mpsd-git_branch

This commit is contained in:
milisbir 2018-04-03 23:30:39 +03:00
parent 124bebb4bf
commit a4ff66d569
1 changed files with 6 additions and 2 deletions

View File

@ -232,7 +232,8 @@ kaynak_indir() {
}
git_indir(){
local _isim _gitadres
local _isim _gitadres _branch
_branch=""
if [ $1 ];then
_gitadres="$1"
else
@ -243,8 +244,11 @@ git_indir(){
else
echo "git repo ismi tanımlı değil"
fi
#branch kontrolü
_branch=echo "${_gitadres}" |sed 's/#branch=/\n/g' | sed -n 2p
[ ! -z ${_branch} ] && _branch="-b ${_branch}"
if [ ! -d $DERLEME_KAYNAKDIZIN/${_isim} ];then
git clone ${_gitadres} $DERLEME_KAYNAKDIZIN/${_isim}
git clone ${_branch} ${_gitadres} $DERLEME_KAYNAKDIZIN/${_isim}
else
cd $DERLEME_KAYNAKDIZIN/${_isim}
git pull