mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 10:13:00 +02:00
9 lines
137 B
Bash
Executable File
9 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
branch_name=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
git push -u github "$branch_name"
|
|
git push -u origin "$branch_name"
|