Commit Briefs

08e5873e99 Stefan Sperling

make 'got checkout' display the checked out reference and commit ID

ok tracey


00357e4dc7 Tracey Emery

add suppress status-code selection to got status. this allows for a quick way to

clean output without the use of ignore files. ok stsp


26960ff7b4 Stefan Sperling

make 'got send' properly send commits which are referenced only by tags

Problem reported by Omar Polo.


4ad4a1ec45 Tracey Emery

add -q quiet mode to checkout and update. supressing output keeps the terminal

responsive on large repos. ok jrick stsp



d33b6dd14c Stefan Sperling

bump version number


fec556bcd0 Stefan Sperling

CHANGES for 0.58 (tags/0.58)


0968089c46 Stefan Sperling

sync dist file list




9b21d88f61 Stefan Sperling

remove obsolete sentence from got_dial_parse_uri() docs


8a8621c2c1 Christian Weisgerber

add missing <sys/types.h> include




cbf435dd90 Stefan Sperling

fix documentation of got_dial_apply_unveil()



baf8297852 Stefan Sperling

remove declaration of got_fetch_parse_uri()



c10270f60d Christian Weisgerber

assert against accidentally overflowing argv[] in got_dial_ssh()

ok stsp


5e5da8c4bc Stefan Sperling

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.


77d7d3bb1a Stefan Sperling

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.


d65a88a2f0 Stefan Sperling

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.


abc59930d5 Christian Weisgerber

indentation fixes


e33e440b68 Stefan Sperling

whitespace fix


bd3d9e54cb Stefan Sperling

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.