git creates files ending in ~?

情到浓时终转凉″ 提交于 2019-11-29 13:09:46

The tilde suffix on file names is usually used by editors (Emacs, Vim in some modes/versions) on backup copies of files you edit. At one time on Mac, Vim seemed to create backups for me; it doesn't any more, but I'm not sure now whether that's because I tweaked a setting somewhere or whether vim changed its behaviour.

I have not seen git add tilde suffixes to file names (either on a Mac where I work mainly, or anywhere else).

To stop git wanting to add the files, add a line containing just *~ to .gitignore.

Vim has (at least) three settings related to this:

nobackup
  backupcopy=auto
  backupext=~

My ':set all' shows the values above. Yours probably shows 'backup' rather than 'nobackup'.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!