16 lines
228 B
Bash
16 lines
228 B
Bash
#!/bin/bash
|
|
|
|
fhemdir=/home/marc/src/fhem
|
|
fhem_mirror=$fhemdir/fhem-git
|
|
myfhem=$fhemdir/my
|
|
|
|
cd $fhem_mirror
|
|
git svn rebase
|
|
#git merge remotes/git-svn
|
|
git push github master
|
|
#cd $myfhem
|
|
#git fetch origin
|
|
#git push github master
|
|
|
|
|