summaryrefslogtreecommitdiff
path: root/setup.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'jc/xstrfmt-null-with-prec-0'Junio C Hamano2016-04-221-1/+1
|\
| * setup.c: do not feed NULL to "%.*s" even with precision 0jc/xstrfmt-null-with-prec-0Junio C Hamano2016-04-071-1/+1
* | Merge branch 'jk/check-repository-format'Junio C Hamano2016-04-131-66/+78
|\ \
| * | verify_repository_format: mark messages for translationjk/check-repository-formatJeff King2016-03-111-2/+2
| * | setup: drop repository_format_version globalJeff King2016-03-111-1/+0
| * | setup: unify repository version callbacksJeff King2016-03-111-42/+23
| * | setup: refactor repo format reading and verificationJeff King2016-03-111-39/+79
| * | check_repository_format_gently: stop using git_config_earlyJeff King2016-03-111-8/+3
| * | lazily load core.sharedrepositoryJeff King2016-03-111-2/+0
| * | wrap shared_repository global in get/set accessorsJeff King2016-03-111-1/+1
| * | setup: document check_repository_format()Jeff King2016-03-111-2/+2
* | | setup: set startup_info->have_repository more reliablyJeff King2016-03-061-1/+3
* | | setup: make startup_info available everywhereJeff King2016-03-061-4/+6
|/ /
* | Merge branch 'jk/tighten-alloc'Junio C Hamano2016-02-261-3/+2
|\ \
| * | use xmallocz to avoid size arithmeticJeff King2016-02-221-3/+2
* | | Merge branch 'nd/dwim-wildcards-as-pathspecs'Junio C Hamano2016-02-241-4/+2
|\ \ \
| * | | check_filename: tighten dwim-wildcard ambiguityJeff King2016-02-101-4/+2
* | | | Merge branch 'nd/do-not-move-worktree-manually'Junio C Hamano2016-02-101-12/+0
|\ \ \ \ | |_|/ / |/| | |
| * | | worktree: stop supporting moving worktrees manuallynd/do-not-move-worktree-manuallyNguyễn Thái Ngọc Duy2016-01-221-12/+0
* | | | clean: make is_git_repository a public functionJeff King2016-01-251-0/+17
* | | | Merge branch 'jk/repository-extension'Junio C Hamano2015-10-261-3/+36
|\ \ \ \ | |/ / / |/| | |
| * | | introduce "preciousObjects" repository extensionjk/repository-extensionJeff King2015-06-241-0/+2
| * | | introduce "extensions" form of core.repositoryformatversionJeff King2015-06-241-3/+34
* | | | Merge branch 'jk/war-on-sprintf'Junio C Hamano2015-10-201-9/+3
|\ \ \ \ | | |_|/ | |/| |
| * | | replace trivial malloc + sprintf / strcpy calls with xstrfmtJeff King2015-09-251-9/+3
* | | | path: implement common_dir handling in git_pathdup_submodule()mk/submodule-gitdir-pathMax Kirillov2015-09-141-5/+12
|/ / /
* | | Merge branch 'nd/fixup-linked-gitdir'Junio C Hamano2015-09-011-2/+2
|\ \ \
| * | | setup: update the right file in multiple checkoutsnd/fixup-linked-gitdirNguyễn Thái Ngọc Duy2015-08-251-2/+2
| |/ /
* | | write_file(): drop caller-supplied LF from calls to create a one-liner filejc/am-state-fixJunio C Hamano2015-08-251-1/+1
* | | write_file(): drop "fatal" parameterJunio C Hamano2015-08-241-1/+1
* | | Merge branch 'ee/clean-remove-dirs'Junio C Hamano2015-08-031-20/+69
|\ \ \ | |/ / |/| |
| * | read_gitfile_gently: fix use-after-freeJeff King2015-06-261-9/+5
| * | setup: sanity check file size in read_gitfile_gentlyErik Elfström2015-06-151-0/+7
| * | setup: add gentle version of read_gitfileErik Elfström2015-06-091-19/+65
* | | Merge branch 'jk/die-on-bogus-worktree-late'Junio C Hamano2015-06-161-2/+10
|\ \ \ | |/ / |/| |
| * | setup_git_directory: delay core.bare/core.worktree errorsjk/die-on-bogus-worktree-lateJeff King2015-05-291-2/+10
* | | Merge branch 'nd/dwim-wildcards-as-pathspecs'Junio C Hamano2015-05-191-1/+3
|\ \ \ | | |/ | |/|
| * | pathspec: avoid the need of "--" when wildcard is usedDuy Nguyen2015-05-031-1/+3
| |/
* | prune: strategies for linked checkoutsNguyễn Thái Ngọc Duy2014-12-011-0/+13
* | setup.c: support multi-checkout repo setupNguyễn Thái Ngọc Duy2014-12-011-9/+24
* | setup.c: detect $GIT_COMMON_DIR check_repository_format_gently()Nguyễn Thái Ngọc Duy2014-12-011-2/+4
* | setup.c: convert check_repository_format_gently to use strbufNguyễn Thái Ngọc Duy2014-12-011-4/+8
* | setup.c: detect $GIT_COMMON_DIR in is_git_directory()Nguyễn Thái Ngọc Duy2014-12-011-6/+37
* | setup.c: convert is_git_directory() to use strbufNguyễn Thái Ngọc Duy2014-12-011-16/+21
|/
* Merge branch 'rs/strbuf-getcwd'Junio C Hamano2014-09-021-46/+47
|\
| * use xgetcwd() to get the current directory or dieRené Scharfe2014-08-261-3/+3
| * setup: convert setup_git_directory_gently_1 et al. to strbufRené Scharfe2014-08-261-43/+44
* | add `config_set` API for caching config-like filesTanay Abhra2014-07-291-0/+9
|/
* Merge branch 'mw/symlinks'Junio C Hamano2014-05-021-2/+2
|\
| * setup: fix windows path buffer over-steppingmw/symlinksMartin Erik Werner2014-04-241-2/+2