Commits
- Commit:
8505ab6630ab9715baa433a84979e90862e4c420
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
Begin cvg
- Commit:
97a02382bf83b5671f51d8792459968edd9a38ba
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
Copy got to cvg
- Commit:
f3807fe5829048c18652abf3e9c2b5f0bb3d0599
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
make gitwrapper ignore 'permission denied' for repository paths
We recommend that gotsh users should not have direct filesystem
access to repositories served by gotd. Which means admins will be
setting things up as follows if public read-access should be denied:
chown _gotd /git
chmod 700 /git
su -m _gotd -c 'gotadmin init /git/repo.git"
However, gitwrapper would error out when repositories listed in
gotd.conf were inaccessible to the user invoking gitwrapper:
git-upload-pack: /etc/gotd.conf:2: realpath /git/repo.git: Permission denied
Make gitwrapper ignore such errors as they are expected in this situation.
While here, add a PROC_GITWRAPPER process ID for use as a global variable
parse.y can check while special-casing any specific behaviour required by
gitwrapper. (The worse alternative would have been adding a new global
variable to parse.y just to control the behaviour on realpath errors.)
ok op@
- Commit:
fdbea373595afc1c293f4ebbe17b0b07a6cc904d
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
add an initial implementation of gotadmin dump
gotadmin dump is used to export (part of) the history of the
repository; at the moment it only generates git bundles (which are
pack files with a header) but support to generate a fast-import
stream is planned.
ok/tweaks stsp and jamsek
- Commit:
76e9b2be1f8f5b50f3092fbf99f110eb4d635543
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug a leak in insert_sendable_ref error path
from op@
- Commit:
4ac84380561c5b7df321cd582a226756c67cc3cf
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
simplify lib/send.c reference handling
Reorganize the reference validation and pathlist generation by
removing the reflist and building a pathlist directly. The pathlist
entries record the object id in their extra data pointer, which also
allows several redundant reference lookups to be skipped.
This will eventually simplify sending target reference names that do
not match the local repo by adding another parameter to
insert_sendable_ref for a remote reference. This remote name will be
added to the pathlist, but validation and object id lookups will
continue to be performed with the local reference.
ok jamsek
- Commit:
b7dad73f266193a1be8d309a4e712b49199f55ad
- From:
- James Cook <falsifian@falsifian.org>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
remove 'got merge -M' todo item
- Commit:
87c986b7f0d0e0e057ff53e14386faeac395878c
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix broken sentence in got.1 (was missing a word)
- Commit:
fcfaa6d5834dc35cb5555fcc4cb1652947bfd82d
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
Make got_worktree_get_base_ref_name static
Nothing appears to benefit from this being non-static, and it was
missing from the public API headers as well.
ok stsp@
- Commit:
a807c50bd11f3ba2b72a8d02a1714efd21c2799c
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
Define apply_umask earlier, without predeclaration
ok op@
- Commit:
1a70a2078b605112beede15564122b377eeba92d
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
consistently mention 'got merge' as an alternative to 'got rebase' in got.1
- Commit:
79878eb8ee8fb9380505ae4a7a252cf38dc273d2
- From:
- James Cook <falsifian@falsifian.org>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
histedit, rebase: document -c, -C are compatible
- Commit:
dcd455ee64953215a90ed4427762b5566d7e0047
- From:
- James Cook <falsifian@falsifian.org>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix option processing for 'got merge'
Don't make -C imply -c (a break statement was missing). Detect -an and
-cn conflicts. Simplify by removing unneeded check for conflicting -aC
(since -C requires -c, we can rely on the -ac conflict being detected).
Update the man page to say -cC is allowed.
- Commit:
31009ade0db15d36e637f180ba64b28110b25208
- From:
- James Cook <falsifian@falsifian.org>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
add -M option: tell got merge not to fast-forward
ok stsp@
- Commit:
3ef3f36a26879f6f0dd1a0b1eb7d2a775ee45095
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync imsg with base
- Commit:
f590993607ab0af771f2b7dd8c3bfb5854e724c3
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: set next version
- Commit:
4faaaabc542477a45c90de97ad22a45835b9a20e
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: release 0.90
- Commit:
b2251e6e28d03b19582a716bf2b3e20bb663d037
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
bubble up got_repo_commits()
now that got_get_repo_commits() doesn't look at `action' we can stop
fetching the commits during the rendering and bubble up the call.
This yields better error messages and better replies codes on failure.
- Commit:
ecdb50ac822f296f9c26b7dd8cd4b010399b0da5
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
drop hack; got_get_repo_commits() doesn't look at action anymore
- Commit:
0fc3012cbeb3ab386febc7c43684f849c69dc674
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
Revert "portable: HOST_NAME_MAX"
This reverts commit 0835bf10ee863d91a617270780cd79c405c6a992.
- Commit:
cf7804ed4ec5343a161ead744ff9128ddbed183a
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
use _POSIX_HOST_NAME_MAX from <limits.h> for portability
ok stsp
- Commit:
f7f5daf01e343ec26add1c2b599aa84f0de8b1c0
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
bump version number
- Commit:
4cbbb7652d53bc4758408e322ba4ac98080b4ec3
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
CHANGES for 0.90
- Commit:
f116c762e79e9065488f51830469be38df406011
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
rate-limit redundant pack cleanup progress output
- Commit:
91554d234c633881db3ad62e68994adab1d3a9eb
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix cleanup progress reporting output