How to add multiple files to Git at the same time

后端 未结 10 629
半阙折子戏
半阙折子戏 2021-01-29 18:12

This will be my first git use. I have added new files ( a lot ) to the folder/project ( git local repository).

I went through online tutorials and forums and see i can do

10条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-29 18:26

    If you want to stage and commit all your files on Github do the following;

    git add -A                                                                                
    git commit -m "commit message"
    git push origin master
    

提交回复
热议问题