We are using Git as a revision control system for our Rails project.
Now, I have a bunch of untracked files in my application directory and I would like to add all those untracked files in one shot to the Git index. I referred to the Git documentation and I would like to check if I understood it correctly.
For adding all untracked files, the command is:
git add -A
OR
git add --all
Please correct me if it is correct or not. Thanks for your help :)