美文网首页
对于多个git网站(码云,gitlab,github)本地提交账

对于多个git网站(码云,gitlab,github)本地提交账

作者: iTsung | 来源:发表于2018-03-16 16:19 被阅读0次

之前在gitlab有了一套账号和密码,后来又在码云有了一套账号和密码。发现,在码云新建一个项目,在本地文件夹clone下来,然后提交时候默认的用户名变成了gitlab的账户,解决方案:

      本地文件夹想和哪一个网站的项目关联,就应该在该目录下,将该目录和项目绑定

git config --global user.name "name"

git config --global user.email "email"

然后,Create a new repository

git clone git@172.0.0.1:username/projectname.git

cd projectname

touch README.md

git add README.md

git commit -m "add README"

git push  origin master

相关文章

网友评论

      本文标题:对于多个git网站(码云,gitlab,github)本地提交账

      本文链接:https://www.haomeiwen.com/subject/gshrqftx.html