git分支命令
git branch -a //可同时查看远程分支和本地分支
git branch //查看本地分支
git branch test //创建本地分支
git branch -d test //删除本地分支
git checkout test //切换到test分支
git log //查看提交的版本
git merge --no-ff develop //合并分支
git fetch origin master //强制更新分支到本地
git reset --hard origin/master //
git push origin --delete test //删除远程分支
git提交命令
git clone git://git.kernel.org/pub/scm/git/git.git
git add //添加
git commit
git pull
git push
网友评论