Skip to content

GitPush

Damian edited this page Apr 3, 2020 · 2 revisions

Pushes your local branch up to your remote.

Optionally, you may choose which remote and also set tracking.

Usage

Push to default remote

GitPush

Replaces

git push

Push to specified remote

[MyBranch]> GitPush -r "private"

Replaces

[MyBranch]> git push --progress "private" "MyBranch:MyBranch"

Push and set Tracking

GitPush -t

Push to specified remote with tracking

GitPush -r <REMOTE> -t

Replaces:

git push -u --progress "REMOTE" "BRANCH"