常用命令
分支
命令 | 说明 |
---|---|
git branch -a | 列出分支 |
git remote show origin | 列出本地&远程分支 |
git remote prune origin | 删除本地无效分支 (慎用) |
git branch -d [branch name] | 删除本地分支 |
git push origin --delete [remote branch] | 删除远程分支 |
git checkout [branch name] | 切换到指定分支,不存在则报错 |
git checkout -b [branch name] | 不存在则新建 |
git checkout -b [branch name] origin/[remote branch] | 拉取远程分支代码并再本地才能关键分支 (先切换到要远程分支, pull一下,保持代码最新) 然后再拉取 |
git push origin feature/1234:feature/1234 | 推送本地分支到远程 |
大约 2 分钟