Kaynak denetimi için Git kullanıyorsanız bu yaklaşım başka bir yolu yoktur. an answer here esinlenerek, ben bir gitattributes dosyasında kullanılmak için kendi filtre yazdı.
Bu filtreyi yüklemek için, noeol_filter
yerde olarak kaydedebilirsiniz için $PATH
, çalıştırılabilir hale, ve aşağıdaki komutları çalıştırın:
git config --global filter.noeol.clean noeol_filter
git config --global filter.noeol.smudge cat
Sadece kendiniz için filtre kullanarak başlatmak için, aşağıdaki satırı koymak için $GIT_DIR/info/attributes
:
*.php filter=noeol
Bu olursa olsun Vim ne, bir .php
dosyasındaki eof herhangi satırsonunu taahhüt yok emin olacaktır.
Ve şimdi, komut kendisi:
#!/usr/bin/python
# a filter that strips newline from last line of its stdin
# if the last line is empty, leave it as-is, to make the operation idempotent
# inspired by: http://stackoverflow.com/questions/1654021/how-can-i-delete-a-newline-if-it-is-the-last-character-in-a-file/1663283#1663283
import sys
if __name__ == '__main__':
try:
pline = sys.stdin.next()
except StopIteration:
# no input, nothing to do
sys.exit(0)
# spit out all but the last line
for line in sys.stdin:
sys.stdout.write(pline)
pline = line
# strip newline from last line before spitting it out
if len(pline) > 2 and pline.endswith("\r\n"):
sys.stdout.write(pline[:-2])
elif len(pline) > 1 and pline.endswith("\n"):
sys.stdout.write(pline[:-1])
else:
sys.stdout.write(pline)