Only 3 fundamental properties of an actor:
- Send messages
# 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)' |
Only 3 fundamental properties of an actor: