mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
313 B
Bash
Executable file
12 lines
313 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -u -e -o pipefail
|
|
|
|
PATCH_BRANCH=`git branch --list '*.x' | cut -d ' ' -f2- | sort -r | head -n1`
|
|
# Trim whitespace
|
|
PATCH_BRANCH=`echo $PATCH_BRANCH`
|
|
|
|
PUSH_BRANCHES="git push git@github.com:angular/angular.git master:master $PATCH_BRANCH:$PATCH_BRANCH"
|
|
|
|
echo $PUSH_BRANCHES
|
|
$PUSH_BRANCHES
|