标签:git
$ git clone ssh://user@domain.com/repo.git
$ git init
$ git status
$ git diff
$ git add
$ git add -p <file>
$ git commit -a
$ git commit
$ git commit -m ‘message here‘
git commit --date="`date --date=‘n day ago‘`" -am "Commit Message"
$ git commit --amend
git stash git checkout branch2 git stash pop
$ git grep "Hello"
$ git grep "Hello" v2.5
$ git log
$ git log --oneline
$ git log --author="username"
$ git log -p <file>
$ git blame <file>
$ git branch
$ git checkout <branch>
$ git checkout -b <branch>
$ git branch <new-branch>
$ git branch --track <new-branch> <remote-branch>
$ git branch -d <branch>
$ git tag <tag-name>
$ git remote -v
$ git remote show <remote>
$ git remote add <remote> <url>
$ git fetch <remote>
$ git remote pull <remote> <url>
$ git pull origin master
$ git push remote <remote> <branch>
$ git push <remote> :<branch> (since Git v1.5.0) 或 git push <remote> --delete <branch> (since Git v1.7.0)
$ git push --tags
$ git merge <branch>
$ git rebase <branch>
$ git rebase --abort
$ git rebase --continue
$ git mergetool
$ git add <resolved-file>
$ git rm <resolved-file>
$ git reset --hard HEAD
$ git reset HEAD
$ git checkout HEAD <file>
$ git revert <commit>
$ git reset --hard <commit>
$ git reset <commit>
$ git reset --keep <commit>
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:git
原文地址:http://blog.csdn.net/hello_katty/article/details/46761885