When we try to push the changes into github.com using git, few git commands need to
be executed. Identify the right order of execution of the following git commands.
a. git add . ; git commit -m “Commenting” ; git push
b. git commit -m “Commenting” ; git push ; git add .
c. git commit -m “Commenting” ; git add . ; git push
d. git push ; git add . ; git commit -m “Commenting”