Commits
- Commit:
d33b6dd14c5fdfc1b5e0d7291e8a7498a34b6253
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
fec556bcd05bb8d7ad8c1638788ff6d3a7a130a6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.58
- Commit:
0968089c4617f2c837943d3cbeae4a24958128bb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync dist file list
- Commit:
1b796c3fa88f0d3101f3dd979d9f8b511fd93086
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix a null-pointer deref in 'got fetch -d'; reported by Omar Polo
- Commit:
678d8c1fe20f1eab5a3568135b24f00c9d22c33c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix name of temporary directory used by test_fetch_delete_remote_refs
- Commit:
9b21d88f61e513f669fbf1baca728bc2b5da0e00
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove obsolete sentence from got_dial_parse_uri() docs
- Commit:
8a8621c2c1b416695060a8fdd3f5973c4e62a603
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
add missing <sys/types.h> include
- Commit:
13b2084e37bc6c16431402e84d4d0f40dad21ada
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make 'gotadmin info' display separate send/fetch URLs if they differ
- Commit:
76b9ee435825630581cb65df420932485607cba5
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
mention where the 'proto' parameter of got_dial_apply_unveil() comes from
- Commit:
cbf435dd90e6ea8b6c6fc7ff277d5fdf823392b6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix documentation of got_dial_apply_unveil()
- Commit:
a5a30f304a64121a362088f45d838ac81a49ee37
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
document functions declared in the public got_dial.h header file
- Commit:
baf8297852cb080b3eea4bd38672e358b8298b76
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove declaration of got_fetch_parse_uri()
- Commit:
2e60146439253c7e4c5fba12e697c2abd29576b8
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix regress/fetch build; broken by my renaming of got_fetch_parse_uri()
- Commit:
c10270f60d5b5c805167e48e6a4fe265bdbecc69
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
assert against accidentally overflowing argv[] in got_dial_ssh()
ok stsp
- Commit:
5e5da8c4bcc83f7737a115b8da52fc3935fe3a6b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rename got_fetch_parse_uri() to got_dial_parse_uri()
This function is now being used by both 'got fetch' and 'got send' so
its former name was misleading.
- 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:
abc59930d57a2d46c310e1b0c758c948554bc1af
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
indentation fixes
- Commit:
e33e440b685fac5ee693a2d2072d865d36352e89
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
whitespace fix
- Commit:
bd3d9e54cb422cb58d52b267c6a8afc3376842d2
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move more code used by got-send-pack and got-fetch-pack to a common file
Move functions and data structures which implement Git protocol features
required for fetching and sending pack files to new files lib/gitproto.c
and lib/got_lib_gitproto.h.
This code was duplicated in got-fetch-pack and got-send-pack.
No functional change.
- Commit:
f024663dea0dea05a0d4c17d2314f38f73e85bc6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move pkt code used by got-fetch-pack and got-send-pack to a common file
The Git protocol uses a simple packet framing format. The got-fetch-pack
and got-send-pack programs contained identical copies of functions to
support this format. Move related functions to new file lib/pkt.c and
link both programs against this common implementation.
No functional change.
- Commit:
f3bc9f1df29f91c63ed334a1a9c8929209f93fdc
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
tog: when jumping to the bottom of the log view, go from the tail backwards
ok jasper
- Commit:
978a28a108ecdc501cf03dade3215aed24981a12
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
make "got branch -d" print reference name and value
Also silence output of "got branch -d" in a regression test, from stsp.
ok stsp
- Commit:
ea66598afcb6fd0bfa2c6cad9532450223c85054
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
tog: jump directly to first log item instead of traversing the list
ok tracey
- Commit:
e4526bf56efa8d234d206abac903deccceed4f17
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
tog: add support for navigating to first/last line of tree and ref views
ok stsp