cloning from remote
1 2 |
cd C:\C#\ScoreLib git clone https://github.com/KoHHeKT/ScoreLib.git |
git commit
1 2 3 |
git status git commit -m "Improve data model prototype" git push |
if added some files to local repository and need to sync with server
1 2 3 4 5 |
Summary: git add -A stages All git add . stages new and modified, without deleted git add -u stages modified and deleted, without new |
update local repository from master
1 |
git pull origin master |
1 |
git config credential.helper store |