1.查看远程仓库
git remote -v
2.添加远程仓库
git remote add origin 远程仓库地址
3.删除远程仓库
git remote remove origin
4.查看所在目录的分支
git branch -a
5.切换分支:
git checkout BranchName
创建一个新的分支并切换到新分支
git checkout -b newBranch == git branch newBranch git checkout newBranch
评论()