标签:创建 code check origin rem 删除 ranch set clone
####首先下载代码
+ git下载代码命令: git clone [git地址] [下载位置]
####分支命令
1. 查看分支 git branch
2. 查看远程分支 git branch -r
3. 查看所有分支(本地和远程) git branch -a
4. 创建分支 git branch [分支名称]
5. 切换分支 git checkout [分支名称]
#####远程仓库操作
1.查看远程仓库地址 git remote -v
2.切换远程仓库地址
git remote set-url origin URL 更换远程仓库地址,URL为新地址
【git remote rm origin】 删除现有远程仓库
【git remote add origin url】添加新远程仓库
标签:创建 code check origin rem 删除 ranch set clone
原文地址:https://www.cnblogs.com/monkay/p/11008051.html