Git常用操作整理
                    目录
                    
                
                
            - 
更多分享:www.catbron.cn
 - 
查看远程分支
git branch -a - 
查看本地分支 git branch
 - 
创建分支 git branch 分支名称
 - 
删除分支
git branch -d 分支名称
 - 
checkout远程分支到本地
git checkout -b 本地分支名称 远程分支名称 - 
删除远程分支
git branch -r -d 分支名称 - 
分支推送到remote 仓库
git push origin(远程分支) master(本地分支) - 
切换分支
git checkout 分支名称 - 
查看remote仓库信息
git remote -v