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

把普通的git库变成bare库

时间:2015-02-18 09:28:46      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

$ cd your_repo
$ mv .git .. && rm -fr *
$ mv ../.git .
$ mv .git/* .
$ rmdir .git

$ git config --bool core.bare true
$ cd ..; mv your_repo your_repo.git                # 更名

 

把普通的git库变成bare库

标签:

原文地址:http://www.cnblogs.com/welhzh/p/4295621.html

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