What command is used to stage files for committing in Git?
- git add
- git commit
- git push
- git stage
The command used to stage files for committing in Git is git add. This command adds changes to the staging area, preparing them for the next commit. It allows for selective committing of changes.
Loading...