Commits
- Commit:
baf8297852cb080b3eea4bd38672e358b8298b76
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove declaration of got_fetch_parse_uri()
- Commit:
77d7d3bb1aabafae6c020c8a07a6e9f4f7885c9b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
de-duplicate a constant used by both 'got fetch' and 'got send'
Both GOT_FETCH_PKTMAX and GOT_SEND_PKTMAX had the same value.
Declare this value as GOT_PKT_MAX in got_lib_pkt.h instead.
- Commit:
d65a88a2f0db40d2c2ac34ee34e8aff8ac629d52
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move duplicated dial_ssh() and dial_git() functions into a common file
These functions are used by 'got send' and 'got fetch' in order to
open network connections to a server. Move them into new file lib/dial.c
and declare relevant functions in got_dial.h and lib/got_lib_dial.h.
No functional change.
- Commit:
0e4002cadf11b9274c4355850d55bd59bbc20d31
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for fetching arbitrary references to 'got clone' and 'got fetch'
- Commit:
2690194b1af694bf2b56ac50c859ac6439dd6a7a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove GOT_FETCH_DEBUG and toggle fetch debug output with -v option instead
- Commit:
9c52365fc3a72b4e0add781c388032869c081473
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
properly terminate the ssh process after fetching via SSH
- Commit:
41b0de1256a7a8a9ed3d4c0d66809ebfcbf1a58d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for listing remote branches and tags to 'got clone' and 'got fetch'
- Commit:
4ba1413314ad741dd3eec3b6672b127f2e03428e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for fetching specific branches to 'got clone' and 'got fetch'
- Commit:
659e7fbd6952b401014702a1e181642a9bba17df
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fetch only HEAD branch and tags by default; add -a option to fetch everything
- Commit:
469dd7264e07bc434adc24b250cd154db9e18d02
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for repository mirrors to 'got clone' and 'got fetch'
- Commit:
f1c6967f90f720a023714672e6751755b755e2a5
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix chopped display of git-server's progress output
- Commit:
7848a0e1655d11a8d85bb505fc6232bd779cddae
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
implement 'got fetch'
- Commit:
68999b92f2fcbce1a9247328552d8d1bdfc45785
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
allow controlling verbosity of 'got clone' with -q and -v options
- Commit:
7ebc057006aaed02492a35a9215698a37b755911
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
do not forget to create references under remotes/origin during 'got clone'
- Commit:
ee448f5f104f873da32b5aa9139702b0377ebf3f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
apply unveil(2) to 'got clone'
- Commit:
668a20f6fe41d7f9c2f4c32b1ee521bff6d459a8
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rewritten got-index-pack; sorry about the monster commit
- Commit:
baa9fea074326a73792e66efbca9746a1bccc596
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
send indexing progress via an imsg
- Commit:
d2cdc63664daa5fa39c9a6398c33f3724650bfe9
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
send pack file download progress information over imsg
- Commit:
531c39852ff6a7454ce0e618bacb7b7e20f93523
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add support for git protocol sidebands and display server progress
- Commit:
a78567c6d69c75338f7883da063f8206011b9bf6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
document fetch API functions
- Commit:
ceee4c0f4a8b5ade21103c1c40c3de86b328156f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove unused arguments from got_fetch_pack()
- Commit:
07e52fce8675e8151ec7c58917fb3a6017279634
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rename got_fetch() to got_fetch_pack()
- Commit:
20eb36d0c1c6656066cb9febb9e6988c1eac5c2a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
attempt to connect to a server before creating a local repo
- Commit:
d9b4d0c08e6fbfa54a11af8518a888425632c912
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make got_fetch() provide reference info to callers and set refs in cmd_clone()
- Commit:
bb64b79860632effc06224a66e840f56e41f6ac6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
have got_fetch() require an open got_repository to be passed in