Git

Git gud

GitHub

Most of my Projects are open-sourced on GitHub.

An analysis of my code can be found here

Snippets

# commit
git commit -am "message"

Stash

  • git stash to save changes without commiting
    • list & apply to show and load stashes
  • git stash apply {n} - go back {n} amount of stashes

Troubleshooting