mirror of
https://github.com/zen-browser/desktop.git
synced 2025-12-20 13:25:31 +00:00
10 lines
155 B
Bash
10 lines
155 B
Bash
set -ex
|
|
|
|
branch="$1"
|
|
default_branch="central"
|
|
|
|
git checkout "$branch"
|
|
git merge "$default_branch"
|
|
git push origin "$branch"
|
|
|
|
git checkout "$default_branch" |