Commits
- Commit:
49b650bb078a73e7a05703caa4e47cdae61ae1fe
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
fix argument name in header declaration
- Commit:
a9da0816e28f2d7d6dbd3582ce02214e5c772501
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
fix order of header lines: from, via, date, orig
The from and via lines were deliberately adjacent before, so they
should stay that way.
- Commit:
bfbb258b77efcda05d51b22c11c23c2b94c3cf05
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
tog log: show author dates if showing author names (@)
- Commit:
20a750ff945baed4c729142993cb0217f40830b9
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
tog: show author date if different from committer date
- Commit:
dee3d788b5980d09c1dac29e67844b3947488112
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
got: show author date if different from committer date
Shown as "orig:" in the output. Slightly adjusts a rebase regress test
to the new output.
- Commit:
7e6fcaa81371396b915c5382bb6f05175313bc8a
- From:
- Sven M. Hallberg <pesco@khjk.org>
- Date:
got rebase: preserve author dates
- Commit:
4b4fd6aa67065da8141a7a08bda84b95bc6ae060
- From:
- Omar Polo <op@omarpolo.com>
- Date:
do not talk about "SHA1 checksum"s in documentation comments
these functions are really taking a struct got_object_id or depend
on the hashing algorithm of the repo so update the comments to match
the reality.
- Commit:
338c18384ab94857d9c176451debca19c224a597
- From:
- Omar Polo <op@omarpolo.com>
- Date:
regress: do not hardcode http port
- Commit:
d9048d75a8da25621fe5e1facf2b6923258311a3
- From:
- Omar Polo <op@omarpolo.com>
- Date:
remove only use of GOT_WORKTREE_INVALID_COMMIT_ID
its only usage was removed in e77c4c9f24 but the define remaied.
ok stsp.
- Commit:
d9e20cb75d62b8ae0fdc5be5140c9447b4080649
- From:
- Omar Polo <op@omarpolo.com>
- Date:
delete trailing whitespaces
- Commit:
d0087ba4f4ce02c7aa2a0892c51bc00e4c0a4348
- From:
- Omar Polo <op@omarpolo.com>
- Date:
minor touches to got-worktree(5)
- stop mentioning SHA1, it's not the only hashing algorithm supported now
- s/lockf/flock since we use flock(3)
ok stsp@
- Commit:
9e111e2e198b3193e6ba6ee05233427812784f76
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: add support for an "owner" file
Was requested in the IRC channel some time ago. The "owner" file is
also supported by stagit.
tweaks stsp and tracey, ok stsp
- Commit:
cbae186176b82efbf747a1486addb8b52c664651
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: avoid unnecessary strdup()
It's fine to leave the owner set to NULL in case there is none. The
template {{..}} construct accepts NULLs (rendering an empty string),
and repo_dir->owner is only passed to that or to free().
- Commit:
bdd334cea6ff98524f22ce5037ba46887398725a
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: refactor file load in its own routine
Split gotweb_load_file() out of gotweb_get_repo_description() and
reuse it for gotweb_get_clone_url() too. Will be useful in the
future for other tasks too.
- Commit:
9e56bdf9d7deb5c9c510a46a91fb918c1ba4c9d2
- From:
- Omar Polo <op@omarpolo.com>
- Date:
run more tests in sha256 mode
Since we've been quickly expanded the support for sha256, instead
of making the regress "opt-in", make them "opt-out". Basically,
only the regress that are reaching the network protocol code needs
to be disabled as of now in sha256 mode (until we add support for
git protocol v2).
- Commit:
38d18775b821d504089ef6268fc301f527ccb169
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotadmin: add flag to `init' to choose the hashing algorithm
Do the same for `got init' too obviously. Repositories created via
`clone' are implicitly sha1 since we don't speak the v2 protocol
(yet).
ok stsp@
- Commit:
ff129794b3e633a240763b063e8966f92f74d299
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotadmin: show hashing algorithm in `info' output
part of a larger diff that's ok stsp@
- Commit:
a5a5a156a91a17c59934179af8eca099a95b6c2d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
load: support bundle v3
The counterpart of generating v3 bundles is to load them.
- Commit:
5f3e316cffd649c7f4164a0c825f4847082a2875
- From:
- Omar Polo <op@omarpolo.com>
- Date:
generate bundles v3 when in sha256 repos
bundles v2 don't have a way to specify the object-format and so
they can't work in sha256 mode; v3 adds a some "capabilities" so
that it's possible to specify the object-format (and also other
things that we aren't interested in actually.)
- Commit:
394b0db70a9cfc5f89b616d8c88d8e2e602346db
- From:
- Omar Polo <op@omarpolo.com>
- Date:
support to create/index sha256 packfiles
in a few cases, an array of SHA1_DIGEST_LENGTH has been converted
to a struct got_object_id to simplify the handling.
- Commit:
515d451f3ad6aff3d0b4148d7e6234bddbe17447
- From:
- Omar Polo <op@omarpolo.com>
- Date:
create sha256 bare objects
- Commit:
36f93b25da24c22c2fa19fdcf274b80b663083d3
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fileindex: improve unexpected object-format error message
suggested by stsp
- Commit:
5bbd34eadb5ecb96d4863dbd7e83a180574a9f7d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add sha256 support to the worktree and fileindex code
- Commit:
d8d59ea5c6e99332dc7a3ca39d0ff6e74629c903
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
simplify trim_obj_id(): replace echo|sed with expr(1)
- Commit:
0048f35afa41d388854a0aba3d335e433bb52445
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix got_object_id initialization when parsing off a delta