摘要:
1. git 查看本地分支:git branch 2. git 查看所有分支:git branch -a 3. git 新建本地分支:git branch branchName 4. git 新建分支并切换: git checkout -b branchName git 基于tag新建并切换分支 g 阅读全文
摘要:
查看所有远程仓库地址: git remote -v 更改远程仓库地址: git remote set-url origin newUrl 查看某一个远程仓库地址: git remote get-url origin 增加一个远程仓库地址:git remote add name url 重命名一个远程 阅读全文