Home | 简体中文 | 繁体中文 | 杂文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | Email

4.4. Manager remote

remote add

		
git remote add origin git@localhost:example.git
		
		

remote show

		
git remote show
origin
		
		

remote rm

		
git remote rm origin
		
		

添加多个远程仓库

git remote add origin git@localhost:example.git
git remote add another https://gitcafe.com/netkiller/netkiller.gitcafe.com.git
git push origin master
git push another master		
		
comments powered by Disqus