Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using git with my team and would like to remove whitespace changes from my diffs, logs, merges, etc. I'm assuming that the easiest way to do this would be for git to automatically remove trailing whitespace (and other whitespace errors) from all commits as they are applied.

I have tried to add the following to by ~/.gitconfig file but it doesn't do anything when I commit. Maybe it's designed for something different. What's the solution?

[core]
    whitespace = trailing-space,space-before-tab
[apply]
    whitespace = fix

I'm using ruby in case anyone has any ruby specific ideas. Automatic code formatting before committing would be the next step, but that's a hard problem and not really causing a big problem.

share|improve this question
If the core.whitespace directive doesn't fix your issues, you can also change the pre-commit hook (.git/hooks/pre-commit) to find and fix them for you. See this post for a detailed description. – VolkA Feb 26 '09 at 19:18

10 Answers

Those settings (core.whitespace and apply.whitespace) are not there to remove trailing whitespace but to:

  • core.whitespace: detect them, and raise errors
  • apply.whitespace: and strip them, but only during patch, not "always automatically"

I believe the git hook pre-commit would do a better job for that (includes removing trailing whitespace)


Note that at any given time you can choose to not run the pre-commit hook:

  • temporarily: git commit --no-verify .
  • permanently: cd .git/hooks/ ; chmod -x pre-commit

Warning: by default, a pre-commit script (like this one), has not a "remove trailing" feature", but a "warning" feature like:

if (/\s$/) {
    bad_line("trailing whitespace", $_);
}

You could however build a better pre-commit hook, espacially when you consider that:

Committing in git with only some changes added to the staging area still results in an “atomic” revision that may never have existed as a working copy and may not work.

share|improve this answer
Turns out git can be convinced to fix whitespace in your working copy via apply.whitespace, by tricking git into treating your working copy changes as a patch. See my answer below. – ntc2 Mar 13 at 23:48

I found a git pre-commit hook that removes trailing whitespace.

  #!/bin/sh

  if git-rev-parse --verify HEAD >/dev/null 2>&1 ; then
     against=HEAD
  else
     # Initial commit: diff against an empty tree object
     against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
  fi
  # Find files with trailing whitespace
  for FILE in `exec git diff-index --check --cached $against -- | sed '/^[+-]/d' | sed -r 's/:[0-9]+:.*//' | uniq` ; do
     # Fix them!
     sed -i 's/[[:space:]]*$//' "$FILE"
  done
  exit
share|improve this answer
2  
The second sed invocation (sed -r 's/:[0-9]+:.*//') could be substituted with cut -f1 -d:. This should work the same on both Linux and BSD based platforms. – Ihor Kaharlichenko Apr 11 '11 at 9:03
2  
Surely this doesn't work - the sed command just changes the working copy and at no point are those changes staged. – Mark Longair Apr 30 '11 at 10:26
3  
@MarkLongair is correct! Stick a git add "$FILE" after the sed. I've made the change to my answer for Mac OS below. – AlexChaffee May 17 '11 at 22:01
@IhorKaharlichenko: actually, using cut is not as safe as the second sed: cut will fail in the (highly unlikely) case of filenames that contain ":". You could use awk 'NF>2{NF-=2}1' to be safe – MestreLion Mar 25 '12 at 9:58
1  
BTW, If you're on Windows (msysgit) and use core.autocrlf=true, you may want to add dos2unix -D "$FILE" inside the for loop, after sed. Otherwise, it will change all CRLFs to LFs by issuing only sed. – jakub.g Jul 31 '12 at 12:11

On Mac OS (or, likely, any BSD), the sed command parameters have to be slightly different. Try this:

#!/bin/sh

if git-rev-parse --verify HEAD >/dev/null 2>&1 ; then
   against=HEAD
else
   # Initial commit: diff against an empty tree object
   against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi

# Find files with trailing whitespace
for FILE in `exec git diff-index --check --cached $against -- | sed '/^[+-]/d' | sed -E 's/:[0-9]+:.*//' | uniq` ; do
    # Fix them!
    sed -i '' -E 's/[[:space:]]*$//' "$FILE"
    git add "$FILE"
done

Save this file as .git/hooks/pre-commit -- or look for the one that's already there, and paste the bottom chunk somewhere inside it. And remember to chmod a+x it too.

Or for global use (via Git commit hooks - global settings) you can put it in $GIT_PREFIX/git-core/templates/hooks (where GIT_PREFIX is /usr or /usr/local or /usr/share or /opt/local/share) and run git init inside your existing repos.

According to git help init:

Running git init in an existing repository is safe. It will not overwrite things that are already there. The primary reason for rerunning git init is to pick up newly added templates.

share|improve this answer
2  
Isn't this hook modifying the working file and overwriting the index with the modified working file? If you were to 'git add -p' to construct your index, this commit hook would blow that away. – Matthew Dutton Nov 16 '12 at 16:36
1  
Yeah, you're probably right. Someone may have to rewrite this script to use git hash-object -w and git update-index to (re)insert the munged file directly into the index. Someone very brave. – AlexChaffee Nov 17 '12 at 4:32

Here is an ubuntu+mac os x compatible version:

#!/bin/sh
#

# A git hook script to find and fix trailing whitespace
# in your commits. Bypass it with the --no-verify option
# to git-commit
#

if git-rev-parse --verify HEAD >/dev/null 2>&1 ; then
  against=HEAD
else
  # Initial commit: diff against an empty tree object
  against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
# Find files with trailing whitespace
for FILE in `exec git diff-index --check --cached $against -- | sed '/^[+-]/d' | (sed -r 's/:[0-9]+:.*//' > /dev/null 2>&1 || sed -E 's/:[0-9]+:.*//') | uniq` ; do
  # Fix them!
  (sed -i 's/[[:space:]]*$//' "$FILE" > /dev/null 2>&1 || sed -i '' -E 's/[[:space:]]*$//' "$FILE")
  git add "$FILE"
done

# Now we can commit
exit

Have fun

share|improve this answer
Looks like the only difference between yours and mine is that you check that sed will actually replace something before rewriting the file... I'm not sure that matters since git doesn't commit changes that don't actually change anything. I suppose it's marginally safer, but also marginally slower, and I prefer the clarity of not repeating the regexes twice on one line. De gustibus non disputandum est! – AlexChaffee Jul 28 '11 at 17:47
no the difference is that the version is using the ubuntu syntax first and (if that fails) afterwards the osx one. – sdepold Jul 29 '11 at 7:12
Ah! Nice one... – AlexChaffee Jul 29 '11 at 17:54
i editted sdepold's post, it should be able to also allow whitespaces in filenames now. – immeëmosol Oct 10 '11 at 10:18

I'd rather leave this task to your favorite editor.

Just set a command to remove trailing spaces when saving.

share|improve this answer
2  
In vim you can do this with: autocmd BufWritePre .cpp,.c,*.h :%/\s\+$//e – Robert Massaioli Nov 20 '09 at 4:37
1  
Sorry, I upvoted the above comment before testing it. There is a missing "s" after the percent sign, and it will move the cursor around if whitespace is found, and it will remove the last search pattern. See vim.wikia.com/wiki/Remove_unwanted_spaces for better alternatives. – Seth Johnson Feb 26 '10 at 14:46
1  
In emacs it's M-x delete-trailing-whitespace. – Mauvis Ledford May 16 '11 at 2:03
   
Better still, for emacs, set a hook to delete trailing whitespace before saving by adding (add-hook 'before-save-hook 'delete-trailing-whitespace) to your .emacs file. Emacs whitespace tricks – Duncan Parkes May 10 at 9:07

Was thinking about this today. This is all I ended up doing for a java project:

egrep -rl ' $' --include *.java *  | xargs sed -i 's/\s\+$//g'
share|improve this answer

the for-loop for files uses the $IFS shell variable. in the given script, filenames with a character in them that also is in the $IFS-variable will be seen as two different files in the for-loop. This script fixes it: multiline-mode modifier as given sed-manual doesn't seem to work by default on my ubuntu box, so i sought for a different implemenation and found this with an iterating label, essentially it will only start substitution on the last line of the file if i've understood it correctly.

#!/bin/sh
#

# A git hook script to find and fix trailing whitespace
# in your commits. Bypass it with the --no-verify option
# to git-commit
#

if git rev-parse --verify HEAD >/dev/null 2>&1
then
    against=HEAD
else
    # Initial commit: diff against an empty tree object
    against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi

SAVEIFS="$IFS"
# only use new-line character as seperator, introduces EOL-bug?
IFS='
'
# Find files with trailing whitespace
for FILE in $(
    git diff-index --check --cached $against -- \
    | sed '/^[+-]/d' \
    | ( sed -r 's/:[0-9]+:.*//' || sed -E 's/:[0-9]+:.*//' ) \
    | uniq \
)
do
# replace whitespace-characters with nothing
# if first execution of sed-command fails, try second one( MacOSx-version)
    (
        sed -i ':a;N;$!ba;s/\n\+$//' "$FILE" > /dev/null 2>&1 \
        || \
        sed -i '' -E ':a;N;$!ba;s/\n\+$//' "$FILE" \
    ) \
    && \
# (re-)add files that have been altered to git commit-tree
#   when change was a [:space:]-character @EOL|EOF git-history becomes weird...
    git add "$FILE"
done
# restore $IFS
IFS="$SAVEIFS"

# exit script with the exit-code of git's check for whitespace-characters
exec git diff-index --check --cached $against --

[1] sed-subsition pattern: SED: How can I replace a newline (\n)? .

share|improve this answer

You can trick Git into fixing the whitespace for you, by tricking Git into treating your changes as a patch:

  1. Set apply.whitespace to fix (you only have to do this once):

    git config apply.whitespace fix

    This tells Git to fix whitespace in patches.

  2. Convince Git to treat your changes as a patch:

    git add -up

    Hit a<enter> to select all changes for each file. You'll get a warning about Git fixing your whitespace errors.

  3. Remove the whitespace errors from your working copy:

    git checkout .

    (If you do git diff before this you'll see that your non-indexed changes are exactly the whitespace errors).

  4. Bring back your changes (if you aren't ready to commit them):

    git reset

Yes, this is a hack. If you plan to do this a lot you probably want the (fancier) pre-commit hook based solution.

UPDATE (April 3 2013): this can be automated, by using git add -e to "edit" the patches with the identity editor ::

(export VISUAL=: && git add -ue) && git checkout . && git reset

This way you don't need to hit a<enter> in the git add step.

Note that running git checkout . automatically is not for the faint of heart ... it's less stressful to do git stash save && git stash apply first, and then a manual git stash drop at the end, after checking that you didn't nuke your changes :)

share|improve this answer
Interesting workaround. +1 – VonC Mar 14 at 6:27

This probably won't directly solve your problem, but you might want to set those via git-config in your actual project space, which edits ./.git/config as opposed to ~/.gitconfig. Nice to keep the settings consistent among all project members.

git config core.whitespace "trailing-space,space-before-tab"
git config apply.whitespace "trailing-space,space-before-tab"
share|improve this answer
2  
afaik, settings inside .git are not shared with anyone else; they're specific to your local repo – AlexChaffee Nov 17 '12 at 3:18

There is a tool for removing trailing whitespace TrimLines

share|improve this answer
VitaliyG: it should be noted, that TrimLines only works on windows and is a pretty new project. It is considered good etiquette to disclose that you are promoting your own project. Thanks for the link either way! – reto Sep 21 '12 at 9:20
It is precompiled only for Windows, but it is written with Qt and can be compiled from sources for all Qt supported platforms – VitaliyG Jan 9 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.