Search Results

4
votes

Is there a way to purge some files from the history of git?

You can remove old versions with either "git rebase" -i or "git filter-branch" http://www.ker …
-1
votes

How do you handle developer individual files under version control?

Don't keep them under version control, and use your tool's ignore ability to keep them from being accidentally checked in. Instead, version a script that generates them, which can use version-cont …