/devnotes

Notes about development for later reference.. mostly a memory aid

devnotes: Random notes from development's many adventures

This should be a non-exhaustive list of notes I think are worth keeping during development. Aim is for them to be pretty baseline as I think writing and repetition are the best way to remember mundane things.

VI / VIM

Git

  • git checkout [branch name] moves you to that branch, and should create a new one if the name doesn't exist
  • git fetch; git rebase is a really nice way to update a local after the remote has been changed, careful, it is permanent.