diff --git a/uproject b/uproject index 66be44b..0f97ad7 100755 --- a/uproject +++ b/uproject @@ -86,7 +86,7 @@ COMMANDS Sur un dépot où git-annex est activé, lancer 'git annex sync' si on est en mode indirect ou 'git annex sync --content' si on est en mode direct. Sur un dépôt où git-annex n'est pas activé, faire l'équivalent des - commandes 'git add -A && git commit && git push' + commandes 'git add -A && git commit && git pull && git push' xcopy xmove xget @@ -242,7 +242,7 @@ elif array_contains VCS_CMDS "$CMD"; then elif array_contains GITANNEX_CMDS "$CMD"; then function xsync() { if ! git_have_annex; then - git_commit -A "Maj des fichiers" + git_commit -Al "Maj des fichiers" && git pull && git_push elif is_yes "$(git config --get annex.direct)"; then git annex add && git annex sync &&