赞
踩
git clone [url]
git pull [remoteName] [localBranchName]
git push [remoteName] [localBranchName]
git branch
git branch -r
git branch -a
git checkout [分支名称]
//注意:新分支创建后不会自动切换为当前分支
git branch name
git push origin [分支名称]
git checkout -b [分支名称]
git merge [分支名称]
git branch -d [分支名称]
git stash save [message]
git stash apply
git commit -m [message]
git status
git log
git log --stat
git tag [name]
git tag
git show [tag]
git tag -d [name]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。