6 lines
175 B
Bash
6 lines
175 B
Bash
|
#!/bin/sh
|
||
|
# Updates the data subtree repo
|
||
|
BRANCH=`git branch --show-current`
|
||
|
REMOTE=gogs@git.ufeff.net:birdulon/ChocolateBirdData.git
|
||
|
git subtree push -P data $REMOTE $BRANCH
|