tags:

views:

24

answers:

2

is there a way to add all files no matter what you do to them whether it be deleted, untracked, etc? like for a commit. i just dont want to have to git add or git rm all my files every time i commit, especially when im working on a large product.

thanks.

A: 

I'm not sure if it will add deleted files, but git add . from the root will add all untracked files.

bcherry
+1  A: 

Try:

git add -A
Kilanash