DevOps / GIT Interview Questions
What is "git commit -a"?
Git commit with option "a" adds all tracked files to the staging area and commits them in one step. It implicitly runs git add command with -a option and hence we can skip git add.
More Related questions...