git commmands Flashcards
1
Q
To add changes from working directory to staging area
A
git add .
2
Q
to commit your work with a message
A
git commit -m “Message”
3
Q
Move changes from the staging area to your repo
A
git push
4
Q
to check your work state
A
git status