Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove git-annex repository from file tree

I tried installing git-annex yesterday to backup my files. I ran git annex add . in the root of my repository tree and then a git commit. So far everything is fine.

What I didn't know git-annex was doing was turning my entire file tree into a whole bunch of symlinks. Every single file in my whole tree is now symlinked into .git/annex/objects! This is messing up my application which depends on files not being symlinks.

My question is, how do I get rid of git-annex and restore my file system to its original state? For a normal git repo I could do rm -r .git, but I'm afraid that won't do the job in git-annex. Thanks in advance.

like image 659
sffc Avatar asked Jun 27 '14 08:06

sffc


4 Answers

Okay, so I stumbled upon some docs for git-annex, and they give two commands that achieve what I wanted to do:

unannex [path ...]

Use this to undo an accidental git annex add command. You can use git annex unannex to move content out of the annex at any point, even if you've already committed it. This is not the command you should use if you intentionally annexed a file and don't want its contents any more. In that case you should use git annex drop instead, and you can also git rm the file.

uninit

Use this to stop using git annex. It will unannex every file in the repository, and remove all of git-annex's other data, leaving you with a git repository plus the previously annexed files.

I started running git annex uninit, but my god was it slow. It took about 5 minutes to "unannex" just a single file. My filesystem tree is about 200,000 files, so that was just unacceptable.

What I ended up doing was actually surprisingly simple and worked well. I used the cp -rL flags to automatically duplicate the contents of my file tree and reverse all symlinks in the duplicate copy. And it was blazing fast: around 30 seconds for my entire file tree. Only problem was that the file permissions were not retained from my original state, so I needed to run some chmod and chcon commands to fix up the permissions.

This second method worked for me because there were no other symlinks in my schema. If you do have symlinks in your schema beyond those created by git-annex, then my little shortcut probably isn't the right choice for you, and you should consider sticking with just git annex uninit.

like image 98
sffc Avatar answered Oct 06 '22 16:10

sffc


If you have a v6 repository, you can do the following:

git unnannex . --fast

which replaces the symlinks w/ hardlinks instead of slowly replacing the symlinks with the original files again.

Only v6 repositories can execute the git-annex unannex command on uncommited changes, so it could be necessary to upgrade the git-annex repo to a v6 repository.

See the Official Upgrade Guide.

In my case I had to upgrade v5 -> v6 and I only had to execute git annex upgrade which took a few seconds and I was done.

like image 20
sweisgerber.dev Avatar answered Oct 06 '22 16:10

sweisgerber.dev


Have you tried to use git-annex in direct mode?

Just change your repository with

git annex direct

This will not use symlinks any longer, but some git commands do not work with such annex repositories. Check out the explanations on their website to see if this scheme fits your purposes.

Maybe the conversion process is faster then the previous mentioned tips. I haven't tried it by myself with big repositories.

like image 34
Sven Rieke Avatar answered Oct 06 '22 18:10

Sven Rieke


I would like to include my own experience of using git annex uninit, in addition to OP's answer.

I didn't have full repository annexed, but only about 40 bigger files. After deciding that I have no particular benefit of using git-annex, I tried unannexing several files and it was over in several seconds per file. Then, I ran git annex uninit and it took more than a minute only for really huge files (more than few GB). Overall, it was done in about 20 minutes, which was acceptable in my case.

So, it seems that the complexity of unannexing increases with the size of annexed file tree.

like image 3
islijepcevic Avatar answered Oct 06 '22 16:10

islijepcevic