-
Notifications
You must be signed in to change notification settings - Fork 0
20210108关于本地git与远程仓库关联的创建与取消(3)git的关联与解除关联操作
ziyouzy edited this page Jan 13, 2021
·
1 revision
git remote add origin [email protected]:YotrolZ/helloTest.git
sudo apt-get install git
Please tell me who you are.
Run
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'zqy@ubuntu.(none)')
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
git remote add origin [email protected]:ziyouzy/test1.git
git remote add origin [email protected]:ziyouzy/giteetest1.git
从而实现同一个本地仓库与两个远程仓库的关联以及数据的同步与备份
"Git分支管理
分支在实际中有什么用呢?假设你准备开发一个新功能,但是需要两周才能完成
第一周你写了50%的代码,如果立刻提交,由于代码还没写完,不完整的代码库会导致别人不能干活了
如果等代码全部写完再一次提交,又存在丢失每天进度的巨大风险
现在有了分支,就不用怕了。你创建了一个属于你自己的分支,别人看不到,还继续在原来的分支上正常工作
而你在自己的分支上干活,想提交就提交,直到开发完毕后
再一次性合并到原来的分支上,这样,既安全,又不影响别人工作。"
回到主题,git remote add origin [email protected]:ziyouzy/xxx.git遇到了问题:
fatal: remote origin already exists.
git remote -v
origin [email protected]:ziyouzy/test1.git (fetch)
origin [email protected]:ziyouzy/test1.git (push)