Git Flashcards
1
Q
How do you check what files currently have changes?
A
git status
2
Q
How do you stage files to be committed?
A
git add
3
Q
How do you commit changes with a message?
A
git commit -a -m “my message”
4
Q
How do you push your changes to remote/central repo?
A
git push