If you make changes on your local repository you can add all your changes to your local history with git add . With the . you add all new files to the local history. With this command you commit everything to your local git repository. git commit -m "new changes" You can do multiple commit. […]
