Quelques liens utiles
Rédigé par Julio
Aucun commentaire
Classé dans : Non classé
ssh -N -L __EXPOSED_PORT__:__TARGET_IP__:__TARGET_PORT__ __SSH_HOST__ -p __SSH_PORT__ -l __USERNAME__ -N
git clone --recurse-submodules -j8 ssh://__REPOSITORY_NAME__
git submodule update --recursive
git submodule foreach --recursive git checkout master
git submodule foreach --recursive git pull origin master
git submodule add ssh://__MODULE_REPOSITORY_NAME__ __MODULE_DIRECTORY_NAME__
git submodule foreach --recursive 'git reset --hard origin/master && git checkout master && git pull && git branch | grep -v "master" | xargs --no-run-if-empty git branch -f -D'
__COMMAND__
sur un répertoire __DIRECTORY_SUFFIX__
git submodule foreach --recursive '[[ `basename $PWD` == *"-__DIRECTORY_SUFFIX__" ]] && __COMMAND__ || echo "do nothing"'
__COMMAND__
sur un projet Maven
git submodule foreach --recursive '[[ -f pom.xml ]] && __COMMAND__ || echo "do nothing"'
Bienvenue sur mon site perso.
Vous trouverez ici quelques exemples de code.