forked from Bunteshaus/bunteshaus.de
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# update from upstream/main
|
|
git pull --rebase upstream main && \
|
|
|
|
# send own changes
|
|
git push origin
|