Skip to content

Instantly share code, notes, and snippets.

@ltpitt
Last active March 11, 2020 04:13
Show Gist options
  • Save ltpitt/90728bff55425d512f8a8b4e25af5943 to your computer and use it in GitHub Desktop.
Save ltpitt/90728bff55425d512f8a8b4e25af5943 to your computer and use it in GitHub Desktop.
Git commands commit your code to your repository
# 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
@mohadesasharifi
Copy link

week 1, 2, 3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment