Commits
- Commit:
bcfa81c7d30bcafdd71a03b1ca679ad735fd0a80
- From:
- Omar Polo <op@omarpolo.com>
- Date:
got-build-regress.sh: use -eq/-ne instead of ==/!= for numbers
- Commit:
cde544b29d344a5c884ca3948d1826520308a353
- From:
- Omar Polo <op@omarpolo.com>
- Date:
regress: allow to run only a subset of the test cases
This allows to run only the test cases named on the command line.
- Commit:
0e0165f13a58bad062d9761626c1b3ba82df671c
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Mark Jamsek <mark@jamsek.dev>
- Date:
add -n to 'got commit' usage; patch by Josiah Frentsos
- Commit:
ac51614e087279834159667c6f71fffe546cffa6
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
keep regress testname copypasta fix from 2a19e2e21a
s/fetch_branch/fetch_honor_wt_conf_bflag so we don't report the wrong
test in the case of failure. The incorrect testname was introduced in
1cb79834ea as the result of too much copypasta. It was subsequently
fixed in 2a19e2e21a but then backed-out.
- Commit:
4bff57b4b66990d6829cb83645d1f1d478ae0cea
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
backout got: always fetch remote HEAD except when -b is used
As pointed out by naddy, this behaviour is not ideal when users
want to limit their repository to a particular branch which will
diverge from HEAD over time, such as -stable branches.
See https://marc.gameoftrees.org/mail/1676388048.8632_0.html
- Commit:
2a19e2e21a876bbc4ae1999ca08ce4c8f2002158
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
got: always fetch remote HEAD except when -b is used
Rather than only fetch HEAD when there are no branches set in got.conf and
there is no branch to be inferred from a work tree, or said branches don't
exist on the server, always fetch HEAD unless 'got fetch -b branch' is used.
ok stsp@
- Commit:
e8049a88bfce89f411671eb3be9a949001534496
- From:
- Omar Polo <op@omarpolo.com>
- Date:
got.1: tweak commit -A description. ok jamsek
- Commit:
a4515c6608c1b685bfa9187b2517b44773a11068
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
got: drop commit -A $GOT_AUTHOR restriction
As discussed with op and stsp on irc, this prevents the valid case of
changing a commit's author to yourself during a histedit operation, and
potentially blocks other valid use cases too.
ok stsp@ and op@
- Commit:
1fa0d17d767f8e443af3b4493f3f2af0e759dda9
- From:
- Omar Polo <op@omarpolo.com>
- Date:
got/tog/gotadmin: pledge earlier
In the case of tog move setlocale(3) before pledge(2), as suggested by
stsp.
ok stsp@
- Commit:
ff08dcd6c83d27f29c7eb78f7b21fee64bebfdd2
- From:
- Omar Polo <op@omarpolo.com>
- Date:
send_tree_entries: simplify len computing
- Commit:
f72ce919dd6d6c15679c5174c47912ac55be1e18
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Mark Jamsek <mark@jamsek.dev>
- Date:
make 'got fetch -b branch' error reporting more helpful
The patch to got-fetch-pack.c was written by stsp with only minor tweaks
by me. Regress updated to account for the change in reporting.
stsp's original got-fetch-pack.c diff ok op jamsek
ok stsp@
- Commit:
1cb79834eab33d1c1c01731b4800bab440032f20
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
regress: fetch -b/got.conf/wt/remote HEAD interaction
The added test checks we honour the correct precedence of branches to be
fetched, which is determined by: the -b flag; branches set in got.conf;
the work tree's current branch; and the remote repository's HEAD branch.
If a branch is specified with -b, only fetch this branch and if it does
not exist, simply report to the user--do not fallback to other branches.
Otherwise, if branches are either not set in got.conf or are set but do
not exist on the server:
- if invoked in a work tree, fallback to the work tree's current branch
- if not in a work tree or the work tree's current branch does not exist
on the server:
- fallback to remote HEAD.
With this, only the -b case can result in an unsuccessful fetch due to the
requested branch(es) not existing on the server. All other cases will either
fetch updates or report "Already up-to-date" (excepting errors).
ok stsp@
- Commit:
0dd7613ce65424868ec86f0623e38eb70d9a9321
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
special case 'got fetch -b <branch>' to only fetch <branch>
As discussed on irc, this drops the implicit remote HEAD fetch when -b is used.
got.1 has been updated to make the new fetch behaviour clear.
ok stsp@
- Commit:
7b771fb638e62245e029bcceaa32c0dce315b23c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
style
- Commit:
0c2ef172a69b83723fda636ca209754ac7995dc1
- From:
- Omar Polo <op@omarpolo.com>
- Date:
typo
- Commit:
2c4740ad12b787db8704cb160abc4f1e5e73d911
- From:
- Mikhail <mp39590@gmail.com>
- Via:
- Mark Jamsek <mark@jamsek.dev>
- Date:
style(9): function call in initialiser patch by Mikhail
- Commit:
161b566ff8fdc61984f077c6ab1d75b5f0fd5ac7
- From:
- Omar Polo <op@omarpolo.com>
- Date:
lib/object_create.c: calloc object ids
future fields added to the got_object_id will be implicitly zeroed
instead of gibberish.
ok stsp@
- Commit:
01392bd60410ca454e46653c8a740008e84545ef
- From:
- Tracey Emery <tracey@traceyemery.net>
- Date:
gotwebd: abort tree and blob as well
- Commit:
4f152e84c01e22799218a449a85a105ff94fdf9d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: abort blame if the client disconnect midway thru
Without setting err when the callback fails we continue the blame
machinery.
- Commit:
faf054c3d5fbad3a55534ebe525d58156c7aad27
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make new log message modication check more robust; fixes regress fallout
ok jamsek
- Commit:
ccc835f12a86459f480a7ea4b724af67cd0889a7
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
garbage-collect redundant read_logmsg() parameter
As identified and suggested by stsp, with the previous commit,
'strip_comments' is now always set thus no longer needed.
ok stsp@
- Commit:
93436ccdaf0945f5fdb4b5cd2b90c9ac0bb14c83
- From:
- Mark Jamsek <mark@jamsek.dev>
- Date:
got: use timestamp and emptiness to validate log message
As suggested by naddy: consider commit log messages valid provided the temp
file time stamp has changed and the file is not empty. This heuristic
provides the desired behaviour (i.e., reusing cherrypicked/backed-out log
messages) that's currently provided but is simpler to grok.
Improved by and ok stsp@
- Commit:
4a1dd8cd4ffaff7d51710820c34321acef181042
- From:
- Omar Polo <op@omarpolo.com>
- Date:
convert two files to utf8
ok stsp
- Commit:
0c049f812e8c3be4dff1796adb9f6d66ca01832b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a TODO item for gotadmin pack command
- Commit:
08175cbb494791a8de66d4f28a3b38da7ca956e7
- From:
- Omar Polo <op@omarpolo.com>
- Date:
open_blob: copy whole id not just the sha1