Running git status
in a folder:
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: b.txt
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: a.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
c.txt
d.txt
e.txt
What is the best way to delete the files c.txt
, d.txt
and e.txt
of this folder without touching the files a.txt
and b.txt
?