In my repo, I have large files committed in history and also present in the latest commit.
I want to use git lfs migrate --no-rewrite
so that the previous commit's SHAs does not get changed.
But will --no-rewrite
change all the large files objects from history with LFS object?
Also, can I use --everything
flag to update all the remote branches?
This command, as far as I know, is not intended for migration of refs to LFS at all. Rather, it was added to correct incorrect repository state in cases where
.gitattributes
specifies that a file should be stored as an LFS pointer, but in fact it is stored "as is". See, for example, this answer: Git error: Encountered 7 file(s) that should have been pointers, but weren'tTo understand the subject, the following links may also be useful:
n
files that should have been pointers, but weren’tNo, because excluding the large file data itself directly from the repository storage by definition requires rewriting history to remove objects from it.
The
--everything
flag cannot be used in conjunction with--no-rewrite
because the latter results in a new commit, so onlyHEAD
is implied and affected.