Open s10wen opened 9 years ago
If I commit some code, then someone else commits and pushes, then I run git up so it rebases, sometimes the whitespace changes from 4 spaces to a tab.
git up
4 spaces
tab
Any ideas please?
git up --ignore-whitespace or git rebase --whitespace=fix to have Git automatically fix whitespace issues as it’s rewriting the patches.
If I commit some code, then someone else commits and pushes, then I run
git up
so it rebases, sometimes the whitespace changes from4 spaces
to atab
.Any ideas please?