up - a bash script that updates either a git or an svn repo
I use both svn and git at work and wanted a way to type one command to update either, so I wrote one.
To use it, put the script somewhere you store useful scripts (I have mine in a~/.scripts/directory), and add an alias to your~/.bashrc(or~/.bash_profile) as follows:
alias up="~/.scripts/up"
Here is the script in its entirety:
I hope it helps you!
You can also check out my updated dotfiles for more useful bash stuff.

