Last active
March 11, 2020 04:13
-
-
Save ltpitt/90728bff55425d512f8a8b4e25af5943 to your computer and use it in GitHub Desktop.
Git commands commit your code to your repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check current status | |
git status | |
# Add changed files (or all files using *) | |
git add yourfilename | |
# Check if everything was added correctly | |
git status | |
# Perform the commit | |
git commit -m "Insert your commit comment here" | |
# Push to repo | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
week 1, 2, 3