-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to remove stale files #61
Comments
It's not a command in git-fat, but heres a start: That'll list all the stale objects. |
Thank you for the reply and pardon my ignorance. Can I just delete those objects from .git/fat/objects? Is there anything like original "git fat gc" command? |
You don't need a pardon, it's a good question! You can delete them from The git fat gc command was never reimplemented as a safety net to prevent people like myself from shooting themselves in the foot, but might still be useful with a fat warning message. |
Thank you. Git history will still have a reference to original file, right? So if I revert back to a previous commit, the git fat file with the sha1 referece will come back, but the binary blob file will be missing. Will it create problem with git fat? |
You are correct entirely. If you check out that commit again and the blob is missing locally, you can do another |
Is there anyway to remove stale files from git-fat?
The text was updated successfully, but these errors were encountered: