Skip to content

Instantly share code, notes, and snippets.

@sploiselle
Last active January 5, 2018 17:01
Show Gist options
  • Save sploiselle/809ccf0bf5a748ad3477baffe81e670e to your computer and use it in GitHub Desktop.
Save sploiselle/809ccf0bf5a748ad3477baffe81e670e to your computer and use it in GitHub Desktop.
  1. Open Terminal (cmd + spacebar; search for Terminal).
  2. Move to the directory where you keep these files:
    cd ~/Desktop/[folder name]
    
  3. Check to make sure all of the file you're changing show up:
    git status
    
  4. If they are, you want to add them to staging:
    git add .
    
  5. Commit everything you have in staging:
    git commit -m "Describe the changes you're making"
    
  6. Push everything up to GitHub:
    git push
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment