之前在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
网友评论