Git相关及git更换服务器地址:

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的分支

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值