Intégration de la branche release-2.17.0

This commit is contained in:
Jephté Clain 2015-09-26 11:51:47 +04:00
commit 338cd9734c
4 changed files with 24 additions and 4 deletions

View File

@ -1,3 +1,8 @@
## Version 2.17.0 du 26/09/2015-11:51
552e4ba améliorer pxs pour un dépôt en mode direct
2ce66e6 maj doc
## Version 2.16.0 du 10/09/2015-11:16
42aa7ea fonctions e*: changer l'affichage en mode NO_COLOR pour afficher les préfixes complets

View File

@ -1 +1 @@
2.16.0
2.17.0

View File

@ -44,3 +44,11 @@ optionnels:
les fichiers RewriteRules*.conf de ce répertoire sont copiés dans /etc/apache2
IMPORTANT: Cette configuration n'est pour le moment supporté que sur debian
## Configuration TLS
Le site https://mozilla.github.io/server-side-tls/ssl-config-generator/ contient
des informations sur la façon de configurer ssl côté serveur pour la sécurité et
les navigateurs modernes
Voir les détails sur https://wiki.mozilla.org/Security/Server_Side_TLS

View File

@ -237,9 +237,16 @@ elif array_contains VCS_CMDS "$CMD"; then
elif array_contains GITANNEX_CMDS "$CMD"; then
function xsync() {
local direct
is_yes "$(git config --get annex.direct)" && direct=1
git annex sync ${direct:+--content}
if is_yes "$(git config --get annex.direct)"; then
git annex sync --pull --no-commit --no-push --no-content &&
git annex add &&
git annex sync --no-pull --commit --no-push --no-content &&
git annex sync --no-pull --no-commit --no-push --content &&
git annex sync --no-pull --no-commit --push --no-content &&
git annex sync
else
git annex sync
fi
}
use_ssh_wrapper
case "$CMD" in