# git pushworking localbranch - Will push "localbranch" to "user//localbranch" # git pushcollab localbranch - Will push "localbranch" to "collab//localbranch" # git pushworking localbranch:remotebranch - Will push "localbranch" to "user//remotebranch" # git pushcollab localbranch:remotebranch - Will push "localbranch" to "collab//remotebranch" Note that you can use a space instead of a colon in the previous two # git pushworking +localbranch - Will *force* push "localbranch" to "user//localbranch" # git pushcollab +localbranch - Will *force* push "localbranch" to "collab//localbranch" The + modifier works in all forms of the command when put in front of localbranch to trigger a force push.