Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

179.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