Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git creates files ending in ~?

Just started using git on my mac. I have one file in my repository called README. When I change it, git puts another file in the directory called README~ containing the previous version.

  1. Is it git doing this?
  2. Why is git doing this?
  3. How can I stop git doing this? (don't just want to add it to .gitignore, but I guess I could do that but I'd rather understand why I'm getting these files in the first place..)

(It's hard to search for an answer on Google cos of trying to search on "~")

like image 431
bruce Avatar asked Nov 20 '10 18:11

bruce


People also ask

How to untrack from git?

Run 'git clean -n' to see a dry run; Run 'git clean -f' to force untracked file deletion; Use 'git clean -f -d' to remove untracked directories; Use 'git clean -f -x' to remove untracked .

How to remove tracking of file git?

To remove a file from Git, you have to remove it from your tracked files (more accurately, remove it from your staging area) and then commit. The git rm command does that, and also removes the file from your working directory so you don't see it as an untracked file the next time around.

How to check the staged files in git?

simply typing git status gives you a list of staged files, a list of modified yet unstaged files, and a list of untracked files. @houtanb, git status shows you a diff. (It doesn't show you all staged files).

Why is git status showing untracked files?

If git status mentions "Untracked files:", you may need to add one or more untracked files. This status message is OK. We are up-to-date, there is nothing to commit, but there is still an untracked file.


1 Answers

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'.

like image 130
Jonathan Leffler Avatar answered Sep 26 '22 10:09

Jonathan Leffler