git 设置全局:
cd existing_repo
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
git remote remove origin
git remote add origin http://61.177.139.106:18088/web/hotspot/abc.git
git config --global http.sslVerify false
git push --set-upstream origin main
git 更换服务器地址:
git remote -v #查看远程端地址
git remote #查看远程仓库名称
git remote set-url origin http://192.168.5.246:18088/web/hotspot/abc.git
git怎么转换分支:
git checkout branchName
该命令会将当前工作分支切换到branchName。另外,可以通过下面的命令在新分支创建的同时切换分支:
git checkout -b newBranch
该命令相当于下面这两条命令的执行结果:
1. git branch newBranch
2. git checkout newBranch
该命令的完全体为:
git checkout -b|-B <new_branch> [<start point>]
首先通过
$ git branch -a
来查看所在目录的分支
$ git branch -a
master
* trunk
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/zhanghanlun
然后输入命令切换分支
适用于第一次创建并切换分支
$ git checkout -b zhanghanlun origin/zhanghanlun
其中远程分支为origin/zhanghanlun
本地分支为zhanghanlun
如果已经有本地分支
直接输入命令
git checkout zhanghanlun
切换到本地为zhanghanlun的分支