Git Operations Flashcards
1
Q
Git Initial Operations (Checkout Master, Create a new Branch, Push to Git Repository)
A
git checkout master : git checkout -b troubleshoot-review : git push -u origin troubleshoot-review
2
Q
Updating Git with changes
A
git commit -am “Fixed Express release”
git push