mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
bbddda3a18
We already allow this override in our pre-push hook, so let's allow it here too. (I call my upstream branches "origin")
12 lines
294 B
Bash
Executable File
12 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# The remote upstream branch on which git.torproject.org/tor.git points to.
|
|
UPSTREAM_BRANCH=${TOR_UPSTREAM_REMOTE_NAME:-"upstream"}
|
|
|
|
git push "$UPSTREAM_BRANCH" \
|
|
master \
|
|
{release,maint}-0.4.1 \
|
|
{release,maint}-0.4.0 \
|
|
{release,maint}-0.3.5 \
|
|
{release,maint}-0.2.9
|