Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git - Add all new files in the repo

Tags:

git

I'm trying to automate an update process. The process is basically:

  1. Check out repo A
  2. Check out repo B
  3. Run a process in repo B that updates/creates a bunch of files
  4. Copy files into repo A
  5. Compile repo A and make sure it doesn't fail
  6. Commit changes into repo A and repo B
  7. Push changes to the remote server.

Everything is working as expected except step 6. I can commit the changes, but how do I commit any new files? I tried git add . as I've read elsewhere but that doesn't catch all the new files in all the sub directories. Is there an easy way to do a "Add all new files"?

like image 882
Justin808 Avatar asked Aug 31 '12 18:08

Justin808


2 Answers

git add -A 

will stage all modifications to the working tree. Add really means "include in the index" or "add changes to the index".

like image 188
Adam Dymitruk Avatar answered Sep 22 '22 11:09

Adam Dymitruk


Take a look here. Perhaps you're interested in git add -u or git add -A.

like image 34
Hayk Martiros Avatar answered Sep 20 '22 11:09

Hayk Martiros