Intégration de la branche release-2.14.0
This commit is contained in:
commit
133bcf2419
|
@ -1,3 +1,7 @@
|
|||
## Version 2.14.0 du 03/09/2015-09:04
|
||||
|
||||
9dcd60b pxs transfert les données aussi en mode direct
|
||||
|
||||
## Version 2.13.0 du 01/09/2015-15:44
|
||||
|
||||
8d2e386 uscrontab: permettre d'ignorer le code d'erreur pour une commande planifiée
|
||||
|
|
|
@ -1 +1 @@
|
|||
2.13.0
|
||||
2.14.0
|
||||
|
|
8
uproject
8
uproject
|
@ -236,10 +236,16 @@ elif array_contains VCS_CMDS "$CMD"; then
|
|||
"vcs_$CMD" "$@"
|
||||
|
||||
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}
|
||||
}
|
||||
use_ssh_wrapper
|
||||
case "$CMD" in
|
||||
annex) git annex "$@";;
|
||||
xcopy|xmove|xget) git annex "${CMD#x}" "$@" && git annex sync;;
|
||||
xsync) xsync;;
|
||||
xcopy|xmove|xget) git annex "${CMD#x}" "$@" && xsync;;
|
||||
xinitial) git_annex_initial "$@";;
|
||||
*) git annex "${CMD#x}" "$@";;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue