Jul 072011
Stage new and modified files in Git
Answer:
To stage new and modified files so that they will be committed in the future, you can use the simple command:
# git add .
So all the newly created and modified files will be staged.
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Stage new and modified files in Git
Answer:
To stage new and modified files so that they will be committed in the future, you can use the simple command:
# git add .
So all the newly created and modified files will be staged.