Changeset 782 for git/branches/dmik/builtin/mktree.c
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/builtin/mktree.c ¶
r626 r782 24 24 die("path %s contains slash", path); 25 25 26 if (alloc <= used) { 27 alloc = alloc_nr(used); 28 entries = xrealloc(entries, sizeof(*entries) * alloc); 29 } 26 ALLOC_GROW(entries, used + 1, alloc); 30 27 ent = entries[used++] = xmalloc(sizeof(**entries) + len + 1); 31 28 ent->mode = mode; … … 65 62 66 63 static const char *mktree_usage[] = { 67 "git mktree [-z] [--missing] [--batch]",64 N_("git mktree [-z] [--missing] [--batch]"), 68 65 NULL 69 66 }; … … 151 148 152 149 const struct option option[] = { 153 OPT_SET_INT('z', NULL, &line_termination, "input is NUL terminated", '\0'),154 OPT_SET_INT( 0 , "missing", &allow_missing, "allow missing objects", 1),155 OPT_SET_INT( 0 , "batch", &is_batch_mode, "allow creation of more than one tree", 1),150 OPT_SET_INT('z', NULL, &line_termination, N_("input is NUL terminated"), '\0'), 151 OPT_SET_INT( 0 , "missing", &allow_missing, N_("allow missing objects"), 1), 152 OPT_SET_INT( 0 , "batch", &is_batch_mode, N_("allow creation of more than one tree"), 1), 156 153 OPT_END() 157 154 };
Note:
See TracChangeset
for help on using the changeset viewer.