git clone ssh://$ALIOTHUSER@git.debian.org/git/splashy/splashy.git
git commit -m "my notes" -a git fetch git rebase origin git push origin
git clone git://git.debian.org/git/splashy/splashy.git
git clone http://git.debian.org/git/splashy/splashy.git
For more information about Git please read the excellent documentation on X.org/Freedesktop.org:
http://www.freedesktop.org/wiki/Infrastructure/git/Developers
You might want to use the following alias in your ~/.profile
# git-pull does not cut it for you? alias gitpull='git fetch origin; git rebase origin;' # how about git-push? alias gitpush='git push; git fetch origin; git rebase origin;'