1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| git init git status git log git add . git commit -m "commit message" git remote add origin <repository> git pull origin master git pull --rebase origin master git push origin master
git clone <repository> git branch git checkout <branch> git merge <branch> git branch -d <branch> git branch -D <branch> git reset --hard HEAD git reset --hard <commit> git rm --cached images/ git rm -r <file/dir>
|