mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-24 14:50:38 +01:00
pgit.sh: Remove restriction to origin master for push and pull from pgit.sh
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
98b170bceb
commit
0727dd9a37
1 changed files with 2 additions and 2 deletions
|
|
@ -56,7 +56,7 @@ pull()
|
||||||
cd $pdir
|
cd $pdir
|
||||||
for d in $pdirs; do
|
for d in $pdirs; do
|
||||||
marker "$d"
|
marker "$d"
|
||||||
(cd $d; git pull origin master)
|
(cd $d; git pull "$@")
|
||||||
done
|
done
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
@ -90,7 +90,7 @@ push()
|
||||||
cd $pdir
|
cd $pdir
|
||||||
for d in $pdirs; do
|
for d in $pdirs; do
|
||||||
marker $d
|
marker $d
|
||||||
(cd $d; git push origin master)
|
(cd $d; git push "$@")
|
||||||
done
|
done
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue