mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
e1ad22643e
Closes #29391 Signed-off-by: David Goulet <dgoulet@torproject.org>
13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# The remote upstream branch on which git.torproject.org/tor.git points to.
|
|
UPSTREAM_BRANCH="upstream"
|
|
|
|
git push $UPSTREAM_BRANCH \
|
|
master \
|
|
{release,maint}-0.4.0 \
|
|
{release,maint}-0.3.5 \
|
|
{release,maint}-0.3.4 \
|
|
{release,maint}-0.3.3 \
|
|
{release,maint}-0.2.9
|