Skip to content

Instantly share code, notes, and snippets.

View skotzko's full-sized avatar

Andrew Skotzko skotzko

View GitHub Profile
@skotzko
skotzko / gist:de23e02aa71a6817aa09
Last active July 29, 2020 04:44
Akka.NET Fundamentals Cheatsheet
@skotzko
skotzko / update_oss_fork.bash
Last active August 29, 2015 14:14
Two aliases you can use to update your fork / repo of an OSS project easily. Uses current local branch name for remote target.
# add to .bash_profile
# uses current local branch name for remote target.
# e.g. if on branch 'dev' will fetch & merge upstream/dev into local 'dev' branch
alias branch="git symbolic-ref --short -q HEAD"
alias update_fork='git fetch upstream && git merge upstream/$(branch) $(branch) && $(push)'