码迷,mamicode.com
首页 > 其他好文 > 详细

Git手册 - 高级特性

时间:2017-06-15 16:22:23      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:git高级特性

一)更改origin仓库


git clone old-repo.git
cd old-repo
git remote rm origin
git remote add origin new-repo.git(url)
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
git push origin master   //if should pull first and fail to merge, run > git pull origin master --allow-unrelated-histories

二)

Git手册 - 高级特性

标签:git高级特性

原文地址:http://taoismli.blog.51cto.com/7443655/1936962

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!