I have a repository on bitbucket that is using LFS. Since using it for some time, I\'ve decided to move the repository back to a space under my control. The only reason I used L
.gitattributes
touch myfile.bin
If you want to move off LFS, but are not so worried about fixing the entire git history, you can do the following;
git lfs uninstall
touch **/*
git commit -a
This will uninstall LFS support, touch every single file (so that git recognises that is has changed) then commit them all. If you like you could be more specific (ie, **/*.png
for example). Note that using **
requires extended glob support enabled (shopt -s globstar
on bash)
This worked for me - but it throws lots of errors (I think I'm getting an error for every commit that a file hasn't been added to LFS in) and takes a long time (roughly 2-3 seconds per commit).
git lfs uninstall
git filter-branch -f --prune-empty --tree-filter '
git lfs checkout
git lfs ls-files | cut -d " " -f 3 | xargs touch
git rm -f .gitattributes
git lfs ls-files | cut -d " " -f 3 | git add
' --tag-name-filter cat -- --all
It uninstalls git LFS support (theoretically preventing LFS from messing with the index) then for each commit it makes sure the LFS files are checked out properly, then touches them all (so git realises they have changed), removes the settings for LFS found in .gitattributes
so that when cloning it doesn't keep trying to use LFS, then adds the real file to the index.
After you do the above, you will need to do a force push. Naturally, that'll throw anyone else working on your repo into a detached head state - so doing this during a code freeze is wise. Afterwards, it's probably easiest to get everyone to do a fresh clone.
git lfs migrate export
From git lfs migrate help
:
Export
The export mode migrates Git LFS pointer files present in the Git history out of Git LFS, converting them into their corresponding object files.
git lfs ls-files
.filter=lfs
lines from ALL the .gitattributes
files in your repo. .gitattributes
can live anywhere so make sure you find them all otherwise this can cause migration issues later..gitattributes
.git status
.git lfs migrate export --everything --include .
git status
to make sure you have no changes. If you left .gitattributes
with filter=lfs
you might incorrectly have changes now.git lfs ls-files
.filter=lfs
lines from ALL your .gitattributes
..git/hooks
directory: pre-commit, post-commit, post-checkout, post-merge.$GIT_TRACE=1
there should be no sign of ...trace git-lfs: filepathfilter: accepting...