git命令
-
git克隆指定分支
git clone -b 分支名称 git地址
- 查看本地所有分支
git branch
- 查看远端所有分支
git branch -r
- 切换分支
git checkout hot-fix
- 改变仓库地址
git remote set-url origin git地址
- 查看git地址
git remote -v
- 同步远端分支
git fetch
- 同步删除远端已经删除的分支
git remote prune origin
- 暂存
git stash save 'beizhu'
- 查看暂存记录
git stash list
- 取回暂存代码
git stash pop
- 提交代码
git push origin master