diff options
author | Etienne Samson <samson.etienne@gmail.com> | 2018-08-29 22:04:42 +0200 |
---|---|---|
committer | Etienne Samson <samson.etienne@gmail.com> | 2018-08-29 22:52:29 +0200 |
commit | 9890f0594cf28a5367e10d798b833c768e23c240 (patch) | |
tree | 09a3353d5a1777410edb0c7e2081ac50f2b1b65e | |
parent | 7765c0a9ff4f77fd979a0a134bdfc71a1010dafb (diff) | |
download | libgit2-9890f0594cf28a5367e10d798b833c768e23c240.tar.gz |
push: make the parallelism default follow the docs
-rw-r--r-- | include/git2/remote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h index 757515d8a..f521fab78 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -643,7 +643,7 @@ typedef struct { } git_push_options; #define GIT_PUSH_OPTIONS_VERSION 1 -#define GIT_PUSH_OPTIONS_INIT { GIT_PUSH_OPTIONS_VERSION, 0, GIT_REMOTE_CALLBACKS_INIT, GIT_PROXY_OPTIONS_INIT } +#define GIT_PUSH_OPTIONS_INIT { GIT_PUSH_OPTIONS_VERSION, 1, GIT_REMOTE_CALLBACKS_INIT, GIT_PROXY_OPTIONS_INIT } /** * Initialize git_push_options structure |