jedbrown / git-fat

Simple way to handle fat files without committing them to git, supports synchronization using rsync
BSD 2-Clause "Simplified" License
621 stars 137 forks source link

How to Disable git fat? #24

Closed nilveryboring closed 10 years ago

nilveryboring commented 10 years ago

Hi @jedbrown, I have git fat installed on my computer, I am wondering how can I disable that for some repositories? Thanks a lot.

jedbrown commented 10 years ago

It is always off by default; you have to git fat init on each repository to activate it. To deactivate in any given repository, remove or comment the [filter "fat"] section in .git/config. Is this acceptable or do you think a git fat deinit is necessary?

nilveryboring commented 10 years ago

Thanks very much, my computer is set up by a salt file which do git fat push / pull automatically when doing git push/ pull. I figure that it is a git hook in the repo today. I changed that and everything works like a charm! Thanks very much for the response!