Wednesday, November 05, 2014

Git line ending fixups revisited

I blogged about this a few years ago. I discovered how to do this when using .gitattributes, which is automatically created when you use Visual Studio to create a project that uses git as its version control system.

I have a .gitattributes file that contains (among other things) this line at the top:
* text=auto
view raw gistfile1.txt hosted with ❤ by GitHub
The sequence of commands is the following:

First, add all changed files:
git add -u
view raw Git add all hosted with ❤ by GitHub
Then, edit the .gitattributes file to comment out the "text=auto" line and save this file:
#* text=auto
view raw gistfile1.sh hosted with ❤ by GitHub
Then issue this command to un-stage all the files. It doesn't matter whether some of the files have meaningful changes. You're not resetting or undoing any file edits, you're merely removing them from the index:
git reset
view raw gistfile1.sh hosted with ❤ by GitHub
Finally, restore the "text=auto" line in your .gitattributes file and save that file:
* text=auto
view raw gistfile1.txt hosted with ❤ by GitHub
You should be all set. If you issue a git status command again you should see only the files that have meaningful changes, if any.