Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert a 'normal' Git repository to a bare one?

The main difference seems to be:

  • in the normal git repository you have a .git folder inside the repository containing all relevant data and all other files build your working copy

  • in a bare Git repository, there is no working copy and the folder (let's call it repo.git) contains the actual repository data

share|improve this question
5  
12  
Presumably this is a shorter method: mv repo/.git repo.git; rm -rf repo – eegg Jun 2 '11 at 17:15
Yes, true. When I wrote the question, this was just the snippet of my history, that I executed the other minute. – Boldewyn Jun 3 '11 at 20:40
9  
@eegg Use && instead of ; in case mv fails! – user1203803 Jul 28 '12 at 16:25

9 Answers

up vote 179 down vote accepted

In short: replace the contents of repo with the contents of repo/.git, then tell the repository that it is now a bare repository.

To do this, execute the following commands:

cd repo
mv .git .. && rm -fr *
mv ../.git .
mv .git/* .
rmdir .git

git config --bool core.bare true
cd ..; mv repo repo.git # renaming just for clarity

Note that this is different from doing a git clone --bare to a new location (see below).

share|improve this answer
2  
Thanks for the hint at core.bare. Now, after googling this option, I can confirm it: kernel.org/pub/software/scm/git-core/docs/git-config.html – Boldewyn Feb 5 '10 at 11:01
3  
Thank you! This seems cleaner to me: mv repo/.git repo.git && rm -rf repo && cd repo.git && git config --bool core.bare true – JasonWoof Jun 21 '12 at 9:43
5  
This is so much more complicated and fragile than the answer below (git clone --bare /path/to/repo). – Dave Jul 6 '12 at 0:16
1  
@Dave: I wrote this answer two and a half years ago. A couple of weeks ago, someone edited the question into something very different. Obviously, none of the answers before that will make any sense now. – Jörg W Mittag Jul 6 '12 at 1:22
2  
That rm command may need * \.[!.]* rather than * in order to remove dot-files and dot-directories. – minopret Aug 27 '12 at 18:25
show 6 more comments

Your method looks like it would work; the file structure of a bare repository is just what is inside the .git directory. But I don't know if any of the files are actually changed, so if that fails, you can just do

git clone --bare /path/to/repo

You'll probably need to do it in a different directory to avoid a name conflict, and then you can just move it back to where you want. And you may need to change the config file to point to wherever your origin repo is.

share|improve this answer
8  
Wrong, this method is not the equivalent. Doing a clone doesn't preserve config options, which can be critical to proper operation such as if you use git-p4. Additionally, a clone destroys remotes, again with something like git-p4 you lose the p4/master branch when you clone, so the above approach is preferable. – nosatalian Apr 21 '10 at 2:00
6  
But you can transfer config options easily by copying the respective parts of the config file. I'd still consider this method to be cleaner than copying and renaming files manually. – Philipp Jun 29 '10 at 9:50
1  
I think the git people agree with jonescb and Philipp. – Daniel Yankowsky Sep 8 '10 at 17:58
1  
This is perfect after a subversion migration since git-svn lacks support for --bare. – Keyo Jan 7 '11 at 7:23
2  
To avoid the name conflict --- git clone --bare /path/to/repo.git /path/to/newbarerepo.git – techastute Jul 27 '12 at 5:20

I think the following link would be helpful

GitFaq: How do I make existing non-bare repository bare?

$ mv repo/.git repo.git
$ git --git-dir=repo.git config core.bare true
$ rm -rf repo
share|improve this answer
Yes, that's quite what I searched, thanks! However, their second proposal (git clone) has the drawbacks that nosatalian mentioned above. – Boldewyn Aug 3 '10 at 6:42

i've read the answers and i have done this:

cd repos
mv .git repos.git
cd repos.git
git config --bool core.bare true # from another answer
cd ../
mv repos.git ../
cd ../
rm -rf repos/ # or delete using a file manager if you like

this will leave the contents of repos/.git as the bare repos.git

share|improve this answer

Here's what I think is safest and simplest. There is nothing here not stated above. I just want to see an answer that shows a safe step-by-step procedure. You start one folder up from the repository (repo) you want to make bare. I've adopted the convention implied above that bare repository folders have a .git extension.

(1) Backup, just in case.
    (a) > mkdir backup
    (b) > cd backup
    (c) > git clone ../repo
(2) Make it bare, then move it
    (a) > cd ../repo
    (b) > git config --bool core.bare true
    (c) > mv .git ../repo.git
(3) Confirm the bare repository works (optional, since we have a backup)
    (a) > cd ..
    (b) > mkdir test
    (c) > cd test
    (d) > git clone ../repo.git
(4) Clean up
    (a) > rm -Rf repo
    (b) (optional) > rm -Rf backup/repo
    (c) (optional) > rm -Rf test/repo
share|improve this answer
this isn't really much safer since you made your backup using git clone. Backup by cloning will cause you to lose some configurations, which in certain cases might be critical for the repository. – Lie Ryan Jul 25 '12 at 9:24
Noted. The only configurations I've ever cared about are global to all my local repositories. – sdesciencelover Aug 13 '12 at 12:57

Oneliner for doing all of the above operations:

for i in `ls -A .`; do if [ $i != ".git" ]; then rm -rf $i; fi; done; mv .git/* .; rm -rf .git; git config --bool core.bare true

(don't blame me if something blows up and you didn't have backups :P)

share|improve this answer

First, backup your existing repo:

(a)  mkdir backup

(b)  cd backup

(c)  git clone non_bare_repo

Second, run the following:

git clone --bare -l non_bare_repo new_bare_repo
share|improve this answer

Unless you specifically want/need to twiddle bits on the filesystem, it really is dead simple to create a bare version of a non-bare repository (mentioned in several other posts here). It's part of git's core functionality:

git clone --bare reponame bare_reponame

share|improve this answer

Wow, it's simply amazing how many people chimed in on this, especially considering it doesn't seem that not a single on stopped to ask why this person is doing what he's doing.

The ONLY difference between a bare and non-bare git repository is that the non-bare version has a working copy. The main reason you would need a bare repo is if you wanted to make it available to a third party, you can't actually work on it directly so at some point you're going to have to clone it at which point you're right back to a regular working copy version.

That being said, to convert to a bare repo all you have to do is make sure you have no commits pending and then just :

rm -R * && mv .git/* . && rm -R .git

There ya go, bare repo.

share|improve this answer
6  
This will not make it bare enough. Try pushing into it. You need to do git config core.bare true as well. – Antony Hatchkins Aug 1 '12 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.