ne pas synchroniser l'annexe en mode automatique

This commit is contained in:
Jephté Clain 2015-05-19 10:45:18 +04:00
parent 10dcbf0d23
commit 2044181494
1 changed files with 3 additions and 2 deletions

View File

@ -485,8 +485,9 @@ function git_push() {
return $?
elif git_have_annex; then
# Si une annexe existe dans le dépôt, demander à git-annex de faire la
# synchronisation, sauf si --no-annex est spécifié
if [ -z "$no_annex" ]; then
# synchronisation, sauf si --no-annex est spécifié ou si on est en mode
# automatique
if [ -z "$no_annex" -a -z "$auto" ]; then
git annex sync
return $?
fi