本地分支管理
- 创建并切换分支
git checkout -b branchname
- 切换分支
git checkout branchname
- 删除分支
git branch -d branchname
远程分支
- 查看所有分支(含本地、远程分支)
git branch -a
- 提交到远程分支
git push -u origin localbranch:remotebranch
主机名 <本地分支>:<远程分支>,会自动在远端创建远程分支 - 拉取远程分支到本地分支
git pull origin remotebranch:localbranch
主机名 <远程分支>:<本地分支> - 删除远程分支
git push origin --delete remotebranch
git object Graph查看
在github
点击insights
-Network