Skip to content

Instantly share code, notes, and snippets.

@darnocer
Created April 20, 2023 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darnocer/c47227a5d9191320e2e018adb752669c to your computer and use it in GitHub Desktop.
Save darnocer/c47227a5d9191320e2e018adb752669c to your computer and use it in GitHub Desktop.
Commit Changes to Github

Committing changes to Github

  1. Check status of changes
git status
  1. Stage files for commit

Specify files:

git add <filename>

or stage all files:

git add .
  1. Commit changes
git -m "commit message here"
  1. Push changes
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment