aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/ls-remote.c
AgeCommit message (Expand)AuthorFilesLines
2025-11-04ref-filter: propagate peeled object IDPatrick Steinhardt1-1/+1
2025-07-01builtin: use default hash when outside a repositorybrian m. carlson1-1/+1
2025-04-17global: use designated initializers for optionsPatrick Steinhardt1-3/+8
2024-11-04builtin/ls-remote: plug leaking server optionsPatrick Steinhardt1-0/+1
2024-10-08ls-remote: leakfix for not clearing server_optionsXing Xin1-0/+1
2024-09-13builtin: remove USE_THE_REPOSITORY_VARIABLE from builtin.hJohn Cai1-0/+1
2024-09-13builtin: add a repository parameter for builtin functionsJohn Cai1-1/+4
2024-08-14Merge branch 'ps/ls-remote-out-of-repo-fix'Junio C Hamano1-0/+15
2024-08-02builtin/ls-remote: fall back to SHA1 outside of a repoPatrick Steinhardt1-0/+15
2024-08-01builtin/ls-remote: fix leaking `pattern` stringsPatrick Steinhardt1-14/+10
2024-07-02Merge branch 'jk/remote-wo-url'Junio C Hamano1-4/+2
2024-06-14remote: drop checks for zero-url caseJeff King1-2/+0
2024-06-14remote: use strvecs to store remote url/pushurlJeff King1-3/+3
2024-06-04ls-remote: introduce --branches and deprecate --headsJunio C Hamano1-2/+5
2024-06-04refs: call branches branchesJunio C Hamano1-2/+2
2024-01-08Merge branch 'en/header-cleanup'Junio C Hamano1-1/+0
2023-12-26treewide: remove unnecessary includes in source filesElijah Newren1-1/+0
2023-11-16ref-filter.c: really don't sort when using --no-sortVictoria Dye1-7/+4
2023-06-21git-compat-util.h: remove unneccessary include of wildmatch.hElijah Newren1-0/+1
2023-06-21cache.h: remove this no-longer-used headerElijah Newren1-1/+0
2023-05-09Merge branch 'en/header-split-cache-h-part-2'Junio C Hamano1-0/+1
2023-04-24pkt-line.h: move declarations for pkt-line.c functions from cache.hElijah Newren1-0/+1
2023-04-06Merge branch 'en/header-split-cleanup'Junio C Hamano1-0/+1
2023-03-30Merge branch 'sg/parse-options-h-users'Junio C Hamano1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-03-20treewide: include parse-options.h in source filesSZEDER Gábor1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2023-02-10doc/ls-remote: clarify pattern formatJeff King1-1/+1
2022-10-13doc txt & -h consistency: add missing options and labelsÆvar Arnfjörð Bjarmason1-1/+1
2022-05-20Merge branch 'ep/maint-equals-null-cocci'Junio C Hamano1-1/+1
2022-05-02Merge branch 'ep/maint-equals-null-cocci' for maint-2.35Junio C Hamano1-1/+1
2022-05-02tree-wide: apply equals-null.cocciJunio C Hamano1-1/+1
2022-02-06ls-remote & transport API: release "struct transport_ls_refs_options"Ævar Arnfjörð Bjarmason1-1/+2
2021-10-20for-each-ref: delay parsing of --sort=<atom> optionsJunio C Hamano1-5/+8
2021-09-12parse-options API users: align usage output in C-stringsÆvar Arnfjörð Bjarmason1-2/+2
2021-08-24ls-remote: set packet_trace_identity(<name>)Ævar Arnfjörð Bjarmason1-0/+2
2021-04-07Merge branch 'ah/plugleaks'Junio C Hamano1-2/+2
2021-03-21transport: also free remote_refs in transport_disconnect()Andrzej Hunt1-2/+2
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2021-02-05connect, transport: encapsulate arg in structJonathan Tan1-4/+5
2020-08-24Merge branch 'jk/unleak-fixes'Junio C Hamano1-5/+3
2020-08-13ls-remote: simplify UNLEAK() usageJeff King1-5/+3
2020-07-28strvec: convert builtin/ callers away from argv_array nameJeff King1-3/+3
2020-05-27builtin/ls-remote: initialize repository based on fetchbrian m. carlson1-0/+4
2019-03-21parse_opt_ref_sorting: always use with NONEG flagJeff King1-2/+1
2018-11-13Merge branch 'jk/proto-v2-ref-prefix-fix'Junio C Hamano1-8/+5
2018-10-31ls-remote: pass heads/tags prefixes to transportJeff King1-0/+5
2018-10-31ls-remote: do not send ref prefixes for patternsJeff King1-8/+0
2018-10-19ls-remote: release memory instead of UNLEAKOlga Telezhnaya1-1/+1
2018-05-23Merge branch 'bw/server-options'Junio C Hamano1-0/+4
2018-05-08Merge branch 'hn/sort-ls-remote'Junio C Hamano1-3/+27
2018-05-08Merge branch 'bw/protocol-v2'Junio C Hamano1-2/+13
2018-04-24ls-remote: send server options when using protocol v2Brandon Williams1-0/+4
2018-04-24Merge branch 'bw/protocol-v2' into HEADJunio C Hamano1-2/+13
2018-04-09ls-remote: create '--sort' optionHarald Nordgren1-3/+27
2018-03-15ls-remote: pass ref prefixes when requesting a remote's refsBrandon Williams1-2/+13
2018-03-15transport: convert transport_get_remote_refs to take a list of ref prefixesBrandon Williams1-1/+1
2018-02-09completion: use __gitcomp_builtin in _git_ls_remoteNguyễn Thái Ngọc Duy1-2/+3
2017-06-23wildmatch: remove unused wildopts parameterÆvar Arnfjörð Bjarmason1-1/+1
2017-03-30avoid using fixed PATH_MAX buffers for refsJeff King1-4/+6
2016-01-19ls-remote: add support for showing symrefsThomas Gummerer1-2/+8
2016-01-19ls-remote: use parse-options apiThomas Gummerer1-53/+29
2016-01-19ls-remote: document --refs optionThomas Gummerer1-1/+1
2015-11-20Convert struct ref to use object_id.brian m. carlson1-1/+1
2015-10-20Merge branch 'jk/war-on-sprintf'Junio C Hamano1-6/+2
2015-09-28ls-remote.txt: delete unsupported optionNguyễn Thái Ngọc Duy1-1/+1
2015-09-25replace trivial malloc + sprintf / strcpy calls with xstrfmtJeff King1-6/+2
2015-01-14standardize usage info string formatAlex Henrie1-1/+1
2014-05-27builtin/ls-remote.c: rearrange xcalloc argumentsBrian Gesiak1-1/+1
2014-02-20use wildmatch() directly without fnmatch() wrapperNguyễn Thái Ngọc Duy1-1/+1
2013-12-05replace {pre,suf}fixcmp() with {starts,ends}_with()Christian Couder1-2/+2
2012-09-07ls-remote: document the '--get-url' optionStefan Naewe1-1/+1
2011-10-05Merge branch 'jc/ls-remote-short-help'Junio C Hamano1-0/+3
2011-09-16ls-remote: a lone "-h" is asking for helpJunio C Hamano1-0/+3
2011-05-18ls-remote: the --exit-code option reports "no matching refs"Michael Schubert1-2/+9
2011-03-02get_remote_url(): use the same data source as ls-remote to get remote urlsUwe Kleine-König1-0/+11
2010-08-15ls-remote: run setup_git_directory_gently() soonerNguyễn Thái Ngọc Duy1-3/+0
2010-05-11ls-remote: print URL when no repo is specifiedTay Ray Chuan1-1/+9
2010-04-08ls-remote: fall-back to default remotes when no remote specifiedTay Ray Chuan1-4/+7
2010-02-22Move 'builtin-*' into a 'builtin/' subdirectoryLinus Torvalds1-0/+107