|
2690194b
|
2020-03-21T18:17:12
|
|
remove GOT_FETCH_DEBUG and toggle fetch debug output with -v option instead
|
|
393fb88d
|
2020-03-21T17:28:29
|
|
handle reference-only updates in 'got fetch' where server sends an empty pack
|
|
9c52365f
|
2020-03-21T10:37:19
|
|
properly terminate the ssh process after fetching via SSH
|
|
41b0de12
|
2020-03-21T10:18:15
|
|
add support for listing remote branches and tags to 'got clone' and 'got fetch'
|
|
4ba14133
|
2020-03-20T20:23:18
|
|
add support for fetching specific branches to 'got clone' and 'got fetch'
|
|
2fb669fb
|
2020-03-20T20:23:18
|
|
initialize optional output parameters in parse_gitconfig_file()
|
|
5146eb39
|
2020-03-20T20:23:18
|
|
fix allocation size in got_privsep_recv_gitconfig_remotes(); found by free(3)
|
|
fe6043b8
|
2020-03-20T19:03:29
|
|
transmit the 'mirror' flag correctly in got_privsep_send_gitconfig_remotes()
|
|
83310ac9
|
2020-03-20T18:43:58
|
|
fix bug where duplicates were returned from got_gitconfig_get_section_list()
|
|
659e7fbd
|
2020-03-20T15:55:08
|
|
fetch only HEAD branch and tags by default; add -a option to fetch everything
|
|
62a4c94c
|
2020-03-20T15:01:15
|
|
support non-default port numbers with SSH and tweak URI parser port handling
|
|
58e1925a
|
2020-03-20T13:32:07
|
|
fix wrong sizeof in got_privsep_send_fetch_req()
|
|
469dd726
|
2020-03-20T11:44:14
|
|
add support for repository mirrors to 'got clone' and 'got fetch'
|
|
b364b1c2
|
2020-03-20T11:22:35
|
|
fix typos in error messages
|
|
76911fd2
|
2020-03-19T23:02:36
|
|
allow 'got fetch' to operate on a non-bare git repository
|
|
f1c6967f
|
2020-03-19T22:43:44
|
|
fix chopped display of git-server's progress output
|
|
7848a0e1
|
2020-03-19T16:57:27
|
|
implement 'got fetch'
|
|
5a489642
|
2020-03-19T16:56:51
|
|
initialize pack file size output paramter of got_privsep_recv_fetch_progress()
|
|
9a682fbe
|
2020-03-19T14:43:38
|
|
add support for Git's SCP style URLs to got_fetch_parse_uri()
|
|
f68a7890
|
2020-03-19T09:07:46
|
|
make got_ref_list() work on a fresh repository created with got_repo_init()
|
|
92a89269
|
2020-03-18T17:46:28
|
|
remove an unused file
|
|
68999b92
|
2020-03-18T16:13:48
|
|
allow controlling verbosity of 'got clone' with -q and -v options
|
|
3af5bc7c
|
2020-03-18T16:13:48
|
|
do not allow passing arbitrary options to SSH
|
|
967f7d1f
|
2020-03-18T16:13:48
|
|
remove unused constants
|
|
d582f26c
|
2020-03-18T16:13:48
|
|
write large objects to disk when resolving deltas; raise in-mem delta threshold
|
|
b46f3e71
|
2020-03-18T16:13:47
|
|
create a git config file in newly cloned repositories
|
|
ee448f5f
|
2020-03-18T16:13:47
|
|
apply unveil(2) to 'got clone'
|
|
a117fd10
|
2020-03-18T16:13:46
|
|
make addrinfo error messages more obvious
|
|
4788f1ce
|
2020-03-18T16:13:46
|
|
extract large objects to a temporary file in got-index-pack
|
|
f826addf
|
2020-03-18T16:13:45
|
|
use a dedicated imsg for sending the pack fetch output file descriptor
|
|
73ab1060
|
2020-03-18T16:13:45
|
|
use a dedicated imsg for sending the pack index output file descriptor
|
|
12491971
|
2020-03-18T16:13:45
|
|
show path to temporary pack file in argv of got-fetch-pack and got-index-pack
|
|
2e5a6fad
|
2020-03-18T16:13:44
|
|
add mmap support to got-index-pack
|
|
55fdd257
|
2020-03-18T16:13:43
|
|
do not buffer more data than necessary in got_inflate_to_mem_fd()
|
|
5eddcd60
|
2020-03-18T16:13:42
|
|
fix endless loop from 9c2cfea6 if decompressed data exceeds buffer size
|
|
1e87a3c3
|
2020-03-18T16:13:42
|
|
avoid re-reading the entirety of an object's data to calculate the CRC
|
|
668a20f6
|
2020-03-18T16:13:41
|
|
rewritten got-index-pack; sorry about the monster commit
|
|
2decf4c6
|
2020-03-18T16:13:41
|
|
make output buffer optional for got_inflate_to_mem{,_fd}()
|
|
3ab5e33c
|
2020-03-18T16:13:41
|
|
add optional 'consumed' output parameter to got_inflate_to_mem_fd()
|
|
baa9fea0
|
2020-03-18T16:11:33
|
|
send indexing progress via an imsg
|
|
849f7557
|
2020-03-18T16:11:32
|
|
check pack file hash in the main process
|
|
d2cdc636
|
2020-03-18T16:11:32
|
|
send pack file download progress information over imsg
|
|
ea7396b9
|
2020-03-18T16:11:32
|
|
rename imsg FETCH_PROGRESS to FETCH_REF
|
|
531c3985
|
2020-03-18T16:11:32
|
|
add support for git protocol sidebands and display server progress
|
|
85e8591f
|
2020-03-18T16:11:32
|
|
in got_fetch_pack, use a separate set of variables for fetching and indexing
|
|
33501562
|
2020-03-18T16:11:30
|
|
prepare for providing refs we already have in fetch request imsg
currently we always send and expect an empty list
|
|
6fb3a497
|
2020-03-18T16:11:29
|
|
add optional 'consumed' output parameter to got_inflate_to_mem()
|
|
4b570209
|
2020-03-18T16:11:28
|
|
revert a change to inflate_read() from Ori's patch; it breaks got-read-blob
|
|
ceee4c0f
|
2020-03-18T16:11:28
|
|
remove unused arguments from got_fetch_pack()
|
|
07e52fce
|
2020-03-18T16:11:27
|
|
rename got_fetch() to got_fetch_pack()
|
|
20eb36d0
|
2020-03-18T16:11:27
|
|
attempt to connect to a server before creating a local repo
|
|
66cba96f
|
2020-03-18T16:11:27
|
|
use GOT_OBJECTS_PACK_DIR instead of variants of the same which contain typos
|
|
d9b4d0c0
|
2020-03-18T16:11:27
|
|
make got_fetch() provide reference info to callers and set refs in cmd_clone()
|
|
bb64b798
|
2020-03-18T16:11:26
|
|
have got_fetch() require an open got_repository to be passed in
|
|
09838ffc
|
2020-03-18T16:11:26
|
|
make got_fetch() expect URI information in parsed form
|
|
82ebf666
|
2020-03-18T16:10:34
|
|
tweak parse_uri() function, declare it as public API, and add a test for it
|
|
ee61b6d3
|
2020-03-18T16:10:33
|
|
make 'got clone' create references; cloned repositories are now usable
|
|
8e278d17
|
2020-03-18T16:10:33
|
|
plug leaks in error paths of got_fetch()
|
|
d45e6863
|
2020-03-18T16:10:33
|
|
fix typo in comment
|
|
abe0f35f
|
2020-03-18T16:10:33
|
|
parse symrefs from server capabilities and transmit them over imsg
|
|
4312a498
|
2020-03-18T16:10:32
|
|
send the 'host' parameter to support git-daemon's virtual hosting
|
|
75fd4eb2
|
2020-03-18T16:10:32
|
|
actually catch connection errors in got_fetch()
|
|
5cc27ede
|
2020-03-18T16:10:32
|
|
make protocol dial helpers return struct got_error style errors
|
|
8f2d01a6
|
2020-03-18T16:10:32
|
|
send fetch progress over imsg
|
|
b887aab6
|
2020-03-18T16:10:32
|
|
plug leaks in error path of got_privsep_recv_fetch_progress()
|
|
b9f99abf
|
2020-03-18T16:10:32
|
|
add imsg for fetch progress reporting; for now only contains reference info
|
|
84f2fa52
|
2020-03-18T16:10:32
|
|
rename got_clone() to got_fetch()
|
|
6f23baec
|
2020-03-18T16:10:31
|
|
declare got_clone() in public API space
|
|
82bde4e0
|
2020-03-18T16:10:31
|
|
remove unused header include
|
|
afa77e03
|
2020-03-18T16:10:31
|
|
actually create a pack and an index in the right place
|
|
279090e1
|
2020-03-18T16:10:31
|
|
pass an object_id * to got_privsep_send_index_pack_req()
|
|
22b6b490
|
2020-03-18T16:10:31
|
|
add a .git suffix to cloned repositories by default
|
|
a251e40e
|
2020-03-18T16:10:31
|
|
GOT_IMSG_ACK isn't needed; just fill the pipe, reading responses will block
|
|
fe4e1501
|
2020-03-18T16:10:30
|
|
use got_opentemp_named_fd() instead of open() for tempfiles in got_clone()
|
|
93658fb9
|
2020-03-18T16:10:30
|
|
Add initial support for network protocol. Ported from git9 by Ori Bernstein.
|
|
e1e77cc4
|
2020-03-17T15:49:17
|
|
in got_opentempfd() don't attempt to unlink the file if mkstemp(3) failed
|
|
ee0cb6f2
|
2020-03-17T13:12:33
|
|
allow inflate(3) to consume all mapped data at once in got_inflate_read_mmap()
|
|
8baa7d26
|
2020-03-17T10:25:06
|
|
retry on Z_BUF_ERROR in got_inflate_read() as well
|
|
afbfc7fb
|
2020-03-15T16:15:58
|
|
remove unneeded memory allocations from ref delta parser which were leaking
|
|
686d24ff
|
2020-03-15T13:32:58
|
|
Z_BUF_ERROR is not fatal; try to decompress more data when it happens
|
|
3969253a
|
2020-03-07T19:01:44
|
|
remove implicit entry update from got_fileindex_entry_alloc(); just alloc
|
|
15341bfd
|
2020-03-05T14:39:37
|
|
trim directories in got remove -R
This is a racy solution that needs to be properly implemented in the future.
ok stsp
|
|
de05890f
|
2020-03-05T10:53:53
|
|
fix histedit 'rebase commit ID mismatch' error when splitting a commit
Commit IDs on histedit's temporary branch can change arbitrarily because
the user may create new commits on this branch while editing past commits.
So there is no point in trying to verify these IDs like we do during rebase.
Add a test case which demonstrates the problem.
|
|
b8b3f209
|
2020-02-29T08:15:55
|
|
make got_path_is_root_dir() deal with an arbitrary amount of leading slashes
|
|
61a7d79f
|
2020-02-29T08:05:11
|
|
remove GOT_ERR_NOT_ABSPATH and fix existing users to deal with absolute paths
|
|
63f810e6
|
2020-02-29T07:54:55
|
|
when "bad path" errors occur, always show the path in question
|
|
54b1c5b5
|
2020-02-22T12:37:58
|
|
don't proceed if a bad imsg is received in recv_gitconfig_remotes()
|
|
d669b9c9
|
2020-02-22T12:37:12
|
|
fix uninitialized variablen recv_gitconfig_remotes; found by sthen@ with gcc8
|
|
7fa81f88
|
2020-02-21T01:06:03
|
|
allow 'got ref' to manipulate refs which do not have a slash in their name
|
|
bb63914a
|
2020-02-17T21:57:56
|
|
make tmp dir location a compile-time setting and change gotweb's tmp dir
We are not sure whether a gotweb package can own /var/www/tmp on OpenBSD.
Moving gotweb's tmp dir to /var/www/got/tmp sidesteps that issue.
|
|
3c24af98
|
2020-02-07T21:06:03
|
|
fix segfault in got backout which include deleted files
|
|
992eb9d8
|
2020-02-07T17:02:17
|
|
spelling
|
|
9a1cc63f
|
2020-02-03T09:18:40
|
|
read repository owner name with gitconfig parser instead of a hand-rolled one
|
|
845785d4
|
2020-02-02T17:08:02
|
|
typo
|
|
6201aef3
|
2020-02-02T09:20:56
|
|
ignore EROFS during checkout for repositories on read-only filesystems
|
|
65aa7d1c
|
2020-01-28T20:07:15
|
|
simplify repository child path check in got_repo_map_path()
|
|
71ec7eac
|
2020-01-28T14:52:27
|
|
kill left-over debug code snippet from a46b9f33fb3018765180eb67cc954d863a5cd525
|
|
a46b9f33
|
2020-01-28T12:09:03
|
|
fix a bug where 'got revert -R' failed on added subtrees
The command could fail with "got: no such entry found in tree".
This problem is reproduced by the regression test added in this commit.
This happened because file index entries were processed in the wrong
order by diff_fileindex_dir(). To fix this, keep removed entries in
the RB tree and skip them when the file index is written out, rather
than removing entries from the RB tree immediately causing side-effects
for RB_NEXT and friends.
|
|
3dcf3e74
|
2020-01-28T11:00:34
|
|
rewind directory file pointer before re-opening the directory
|
|
e83c0634
|
2020-01-27T22:25:59
|
|
remove pointless cwd checking from got_repo_map_path()
|