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