summaryrefslogtreecommitdiffstats
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-04-10 07:43:18 +0200
committerJunio C Hamano <gitster@pobox.com>2010-04-10 07:43:18 +0200
commit3b0c19663e7976cd32188b42e762c980d1bb93d4 (patch)
tree73c9c829d7cc48cfa92417c8f9c2160c3f3a5882 /builtin
parentMerge branch 'rc/maint-reflog-msg-for-forced-branch' (diff)
parentLet check_preimage() use memset() to initialize "struct checkout" (diff)
downloadgit-3b0c19663e7976cd32188b42e762c980d1bb93d4.tar.xz
git-3b0c19663e7976cd32188b42e762c980d1bb93d4.zip
Merge branch 'maint'
* maint: Let check_preimage() use memset() to initialize "struct checkout" fetch/push: fix usage strings
Diffstat (limited to 'builtin')
-rw-r--r--builtin/apply.c5
-rw-r--r--builtin/fetch.c8
-rw-r--r--builtin/push.c2
3 files changed, 6 insertions, 9 deletions
diff --git a/builtin/apply.c b/builtin/apply.c
index 7ca90472c1..771c972c55 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -2824,11 +2824,8 @@ static int check_preimage(struct patch *patch, struct cache_entry **ce, struct s
if (stat_ret < 0) {
struct checkout costate;
/* checkout */
+ memset(&costate, 0, sizeof(costate));
costate.base_dir = "";
- costate.base_dir_len = 0;
- costate.force = 0;
- costate.quiet = 0;
- costate.not_new = 0;
costate.refresh_cache = 1;
if (checkout_entry(*ce, &costate, NULL) ||
lstat(old_name, st))
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 957be9f926..8470850415 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -14,10 +14,10 @@
#include "transport.h"
static const char * const builtin_fetch_usage[] = {
- "git fetch [options] [<repository> <refspec>...]",
- "git fetch [options] <group>",
- "git fetch --multiple [options] [<repository> | <group>]...",
- "git fetch --all [options]",
+ "git fetch [<options>] [<repository> [<refspec>...]]",
+ "git fetch [<options>] <group>",
+ "git fetch --multiple [<options>] [<repository> | <group>]...",
+ "git fetch --all [<options>]",
NULL
};
diff --git a/builtin/push.c b/builtin/push.c
index 62957ededd..f4358b9d23 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -10,7 +10,7 @@
#include "parse-options.h"
static const char * const push_usage[] = {
- "git push [<options>] [<repository> <refspec>...]",
+ "git push [<options>] [<repository> [<refspec>...]]",
NULL,
};