Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- #!/bin/bash
-
- BASEDIR=$1
- if [ "x$BASEDIR" = "x" ] ; then
- echo "No template git repo specified. Usage: $0 <template-git-repo>"
- exit 1
- fi
-
- cd $BASEDIR
- git fetch
- git rebase
|