820a5361
|
1390
|
die("expected '<hash> <uri>', got: %s\n", reader->line);
|
820a5361
|
1395
|
die("expected DELIM");
|
820a5361
|
1522
|
die("fetch-pack: unable to spawn http-fetch");
|
820a5361
|
1526
|
die("fetch-pack: expected keep then TAB at start of http-fetch output");
|
820a5361
|
1531
|
die("fetch-pack: expected hash then LF at end of http-fetch output");
|
820a5361
|
1538
|
die("fetch-pack: unable to finish http-fetch");
|
820a5361
|
1542
|
die("fetch-pack: pack downloaded from %s does not match expected hash %.*s",
|
820a5361
|
1543
|
uri, (int) the_hash_algo->hexsz,
|
820a5361
|
1544
|
packfile_uris.items[i].string);
|
0ba08c05
|
25
|
die(_("Remote with no URL"));
|
54248706
|
61
|
warning(_("promisor remote name cannot begin with '/': %s"),
|
54248706
|
63
|
return NULL;
|
7bdf0926
|
93
|
previous->next = r->next;
|
7b6e1b04
|
108
|
return git_config_string(&core_partial_clone_filter_default,
|
b21a55f3
|
139
|
return 0;
|
dcc8b4e9
|
202
|
static int remove_fetched_oids(struct object_id **oids, int oid_nr, int to_free)
|
dcc8b4e9
|
204
|
int i, missing_nr = 0;
|
dcc8b4e9
|
205
|
int *missing = xcalloc(oid_nr, sizeof(*missing));
|
dcc8b4e9
|
206
|
struct object_id *old_oids = *oids;
|
dcc8b4e9
|
208
|
int old_fetch_if_missing = fetch_if_missing;
|
dcc8b4e9
|
210
|
fetch_if_missing = 0;
|
dcc8b4e9
|
212
|
for (i = 0; i < oid_nr; i++)
|
dcc8b4e9
|
213
|
if (oid_object_info_extended(the_repository, &old_oids[i], NULL, 0)) {
|
dcc8b4e9
|
214
|
missing[i] = 1;
|
dcc8b4e9
|
215
|
missing_nr++;
|
dcc8b4e9
|
218
|
fetch_if_missing = old_fetch_if_missing;
|
dcc8b4e9
|
220
|
if (missing_nr) {
|
dcc8b4e9
|
221
|
int j = 0;
|
dcc8b4e9
|
222
|
new_oids = xcalloc(missing_nr, sizeof(*new_oids));
|
dcc8b4e9
|
223
|
for (i = 0; i < oid_nr; i++)
|
dcc8b4e9
|
224
|
if (missing[i])
|
dcc8b4e9
|
225
|
oidcpy(&new_oids[j++], &old_oids[i]);
|
dcc8b4e9
|
226
|
*oids = new_oids;
|
dcc8b4e9
|
227
|
if (to_free)
|
dcc8b4e9
|
228
|
free(old_oids);
|
dcc8b4e9
|
231
|
free(missing);
|
dcc8b4e9
|
233
|
return missing_nr;
|
dcc8b4e9
|
248
|
if (missing_nr == 1)
|
dcc8b4e9
|
249
|
continue;
|
dcc8b4e9
|
250
|
missing_nr = remove_fetched_oids(&missing_oids, missing_nr, to_free);
|
dcc8b4e9
|
251
|
if (missing_nr) {
|
dcc8b4e9
|
252
|
to_free = 1;
|
dcc8b4e9
|
253
|
continue;
|
dcc8b4e9
|
261
|
free(missing_oids);
|
Barret Rhoden
|
1fc73384
|
blame: optionally track line fingerprints during fill_blame_origin()
|
Barret Rhoden
|
8934ac8c
|
blame: add config options for the output of ignored or unblamable lines
|
Barret Rhoden
|
43885768
|
blame: use the fingerprint heuristic to match ignored lines
|
Barret Rhoden
|
ae3f36de
|
blame: add the ability to ignore commits and their changes
|
Barret Rhoden
|
f93895f8
|
Move oidset_parse_file() to oidset.c
|
Christian Couder
|
7b6e1b04
|
Move core_partial_clone_filter_default to promisor-remote.c
|
Christian Couder
|
dcc8b4e9
|
promisor-remote: implement promisor_remote_get_direct()
|
Christian Couder
|
b21a55f3
|
promisor-remote: parse remote.*.partialclonefilter
|
Christian Couder
|
7bdf0926
|
promisor-remote: use repository_format_partial_clone
|
Christian Couder
|
54248706
|
Add initial support for many promisor remotes
|
Christian Couder
|
0ba08c05
|
Remove fetch-object.{c,h} in favor of promisor-remote.{c,h}
|
Christian Couder
|
e265069a
|
Use promisor_remote_get_direct() and has_promisor_remote()
|
Denton Liu
|
f39a9c65
|
remote: add --save-to-push option to git remote set-url
|
Jonathan Tan
|
472fbef8
|
http-fetch: support fetching packfiles by URL
|
Jonathan Tan
|
bf01639c
|
fetch-pack: support more than one pack lockfile
|
Jonathan Tan
|
a8d662e3
|
upload-pack: refactor reading of pack-objects out
|
Jonathan Tan
|
820a5361
|
upload-pack: send part of packfile response as uri
|
Josh Steadmon
|
6da1f1a9
|
protocol: advertise multiple supported versions
|
Junio C Hamano
|
ee334603
|
Merge branch 'jt/fetch-cdn-offload' into pu
|
Martin Koegler
|
5efde212
|
zlib.c: use size_t for size
|
Michael Platings
|
170072f9
|
blame: add a fingerprint heuristic to match ignored lines
|
Nickolai Belakovski
|
2582083f
|
ref-filter: add worktreepath atom
|
Phillip Wood
|
d559f502
|
rebase --abort/--quit: cleanup refs/rewritten
|
Phillip Wood
|
37e9ee5c
|
sequencer: return errors from sequencer_remove_state()
|
a5e5f399
|
415
|
die(_("'%s' cannot be used with updating paths"),
|
a5e5f399
|
425
|
die(_("'%s' cannot be used with %s"),
|
183fb44f
|
433
|
die(_("neither '%s' or '%s' is specified"),
|
183fb44f
|
437
|
die(_("'%s' must be used when '%s' is not specified"),
|
e3ddd3b5
|
442
|
die(_("'%s' or '%s' cannot be used with %s"),
|
e3ddd3b5
|
447
|
die(_("'%s' or '%s' cannot be used with %s"),
|
183fb44f
|
456
|
patch_mode = "--patch=reset";
|
2f0896ec
|
460
|
BUG("either flag must have been set, worktree=%d, index=%d",
|
183fb44f
|
536
|
die(_("unable to write new index file"));
|
1806c29f
|
656
|
BUG("'switch --orphan' should never accept a commit as starting point");
|
1806c29f
|
1039
|
BUG("'switch --orphan' should never accept a commit as starting point");
|
5c06e269
|
1176
|
die(_("only one reference expected"));
|
7968bef0
|
1300
|
const char *ref = to_free;
|
7968bef0
|
1302
|
if (skip_prefix(ref, "refs/tags/", &ref))
|
7968bef0
|
1303
|
die(_("a branch is expected, got tag '%s'"), ref);
|
7968bef0
|
1304
|
if (skip_prefix(ref, "refs/remotes/", &ref))
|
7968bef0
|
1305
|
die(_("a branch is expected, got remote branch '%s'"), ref);
|
7968bef0
|
1306
|
die(_("a branch is expected, got '%s'"), ref);
|
7968bef0
|
1314
|
die(_("a branch is expected, got '%s'"), branch_info->name);
|
c45f0f52
|
1329
|
die(_("cannot switch branch in the middle of an am session\n"
|
c45f0f52
|
1333
|
die(_("cannot switch branch while rebasing\n"
|
c45f0f52
|
1337
|
die(_("cannot switch branch while cherry-picking\n"
|
c45f0f52
|
1341
|
die(_("cannot switch branch while reverting\n"
|
c45f0f52
|
1345
|
die(_("cannot switch branch while bisecting\n"
|
3ec37ad1
|
1372
|
die(_("'%s' cannot be used with '%s'"), "--discard-changes", "--merge");
|
c9c935f6
|
1510
|
BUG("make up your mind, you need to take _something_");
|
183fb44f
|
1542
|
opts->checkout_index = 0;
|
183fb44f
|
1552
|
BUG("these flags should be non-negative by now");
|
c9c935f6
|
1613
|
die(_("could not resolve %s"), opts->from_treeish);
|
Denton Liu
|
526c03b5
|
rebase: refactor can_fast_forward into goto tower
|
Denton Liu
|
10572de1
|
rebase: fast-forward --onto in more cases
|
Derrick Stolee
|
efeb229e
|
commit-graph: return with errors during write
|
Derrick Stolee
|
d83160e8
|
commit-graph: extract fill_oids_from_packs()
|
Derrick Stolee
|
63a8be62
|
commit-graph: extract fill_oids_from_commit_hex()
|
Derrick Stolee
|
93ba1867
|
commit-graph: extract fill_oids_from_all_packs()
|
Derrick Stolee
|
8520d7fc
|
commit-graph: extract write_commit_graph_file()
|
Jonathan Nieder
|
ee70c128
|
index: offer advice for unknown index extensions
|
Nguyễn Thái Ngọc Duy
|
a5e5f399
|
restore: replace --force with --ignore-unmerged
|
Nguyễn Thái Ngọc Duy
|
c45f0f52
|
switch: reject if some operation is in progress
|
Nguyễn Thái Ngọc Duy
|
7968bef0
|
switch: only allow explicit detached HEAD
|
Nguyễn Thái Ngọc Duy
|
5c06e269
|
switch: stop accepting pathspec
|
Nguyễn Thái Ngọc Duy
|
1806c29f
|
switch: make --orphan switch to an empty tree
|
Nguyễn Thái Ngọc Duy
|
c9c935f6
|
restore: take tree-ish from --source option instead
|
Nguyễn Thái Ngọc Duy
|
e3ddd3b5
|
restore: reject invalid combinations with --staged
|
Nguyễn Thái Ngọc Duy
|
183fb44f
|
restore: add --worktree and --staged
|
Nguyễn Thái Ngọc Duy
|
3ec37ad1
|
switch: add --discard-changes
|
Nguyễn Thái Ngọc Duy
|
2f0896ec
|
restore: support --patch
|
Philip Oakley
|
1fde99cf
|
doc branch: provide examples for listing remote tracking branches
|
Denton Liu
|
13cdf780
|
format-patch: teach format.notes config option
|
Elijah Newren
|
e80001f8
|
fast-export: do automatic reencoding of commit messages only if requested
|
Elijah Newren
|
ccbfc96d
|
fast-export: avoid stripping encoding header if we cannot reencode
|
Elijah Newren
|
3edfcc65
|
fast-import: support 'encoding' commit header
|
Emily Shaffer
|
de99eb0c
|
grep: fail if call could output and name is null
|
Eric Wong
|
f4f476b6
|
update-server-info: avoid needless overwrites
|
Jeff Hostetler
|
5fdae9d3
|
trace2: fix tracing when NO_PTHREADS is defined
|
Jeff King
|
7bd9631b
|
read-cache: drop unused parameter from threaded load
|
Jeff King
|
76a7bc09
|
cmd_{read,write}_tree: rename "unused" variable that is used
|
Jeff King
|
97387c8b
|
am: read interactive input from stdin
|
Jeff King
|
6e7baf24
|
am: drop tty requirement for --interactive
|
Johannes Schindelin
|
7877ac3d
|
bisect--helper: verify HEAD could be parsed before continuing
|
Johannes Schindelin
|
4c785c0e
|
rebase: replace incorrect logical negation by correct bitwise one
|
Jonathan Tan
|
8a30a1ef
|
index-pack: prefetch missing REF_DELTA bases
|
Nguyễn Thái Ngọc Duy
|
f3f8311e
|
merge: add --quit
|
Nguyễn Thái Ngọc Duy
|
8ef05193
|
diff-parseopt: restore -U (no argument) behavior
|
Nguyễn Thái Ngọc Duy
|
f7e68a08
|
parse-options: check empty value in OPT_INTEGER and OPT_ABBREV
|
Nguyễn Thái Ngọc Duy
|
1de16aec
|
worktree add: sanitize worktree names
|
SZEDER Gábor
|
1aed1a5f
|
progress: avoid empty line when breaking the progress line
|