使用gitlab 新建分支,并且指定分支上传代码
gitlab 新建分支,并且指定分支上传代码
1,git clone http:xxxxxxxxxxxx
2,git branch new_master
3,git checkout new_master
4,git add .
5,git commit -m "new-graphql"
6,git push origin new_master
7,git push
使用命令删除分支
删除本地分支
git branch -d dev 【git branch -参数 本地分支名称】
删除远程分支
git push origin --delete dev 【git push origin --参数 远程分支名称】
上传代码会报的错误:
Cloning into ‘kxvc’…
remote: HTTP Basic: Access denied
fatal: Authentication failed for ‘http://192.168.xxx.xx/kxvc/kxvc.git/’
解决办法:
先执行: git config --system --unset credential.helper
接着再次clone时,就会提示输入用户名和密码