- Jan 17, 2010
-
-
Junio C Hamano authored
The mailing address of FSF changed quite a while ago. Also the expansion of the acronym LGPL (which we don't use) is "Lesser GPL" not "Library GPL" these days in recent copies of GPLv2. Update the copy we have with a fresh download of <http://www.gnu.org/licenses/gpl-2.0.txt >. This incidentally removes form-feeds in the text we retained for all these years. Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Junio C Hamano authored
* maint: Fix uninitialized variable in get_refs_via_rsync(). Document git-blame triple -C option
-
Junio C Hamano authored
* cc/reset-more: t7111: fix bad HEAD in tests with unmerged entries
-
- Jan 16, 2010
-
-
Christian Couder authored
When testing what happens on unmerged entries, the HEAD is the commit we are starting from before the merge that fails and create the unmerged entries. It is not the commit before. Signed-off-by:
Christian Couder <chriscool@tuxfamily.org> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Richard Weinberger authored
This fixes a crash when cloning via rsync://. Signed-off-by:
Richard Weinberger <richard@nod.at> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
- Jan 15, 2010
-
-
Ramkumar Ramachandra authored
Lift the explanation of -CCC option in the source to the documentation. Signed-off-by:
Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
- Jan 13, 2010
-
-
Junio C Hamano authored
* jc/checkout-merge-base: rebase -i: teach --onto A...B syntax rebase: fix --onto A...B parsing and add tests "rebase --onto A...B" replays history on the merge base between A and B "checkout A...B" switches to the merge base between A and B
-
Junio C Hamano authored
* rs/maint-archive-match-pathspec: archive: complain about path specs that don't match anything
-
Junio C Hamano authored
* il/vcs-helper: Reset possible helper before reusing remote structure Remove special casing of http, https and ftp Support remote archive from all smart transports Support remote helpers implementing smart transports Support taking over transports Refactor git transport options parsing Pass unknown protocols to external protocol handlers Support mandatory capabilities Add remote helper debug mode Conflicts: Documentation/git-remote-helpers.txt transport-helper.c
-
Junio C Hamano authored
* cc/reset-more: t7111: check that reset options work as described in the tables Documentation: reset: add some missing tables Fix bit assignment for CE_CONFLICTED "reset --merge": fix unmerged case reset: use "unpack_trees()" directly instead of "git read-tree" reset: add a few tests for "git reset --merge" Documentation: reset: add some tables to describe the different options reset: improve mixed reset error message when in a bare repo
-
Junio C Hamano authored
* nd/sparse: (25 commits) t7002: test for not using external grep on skip-worktree paths t7002: set test prerequisite "external-grep" if supported grep: do not do external grep on skip-worktree entries commit: correctly respect skip-worktree bit ie_match_stat(): do not ignore skip-worktree bit with CE_MATCH_IGNORE_VALID tests: rename duplicate t1009 sparse checkout: inhibit empty worktree Add tests for sparse checkout read-tree: add --no-sparse-checkout to disable sparse checkout support unpack-trees(): ignore worktree check outside checkout area unpack_trees(): apply $GIT_DIR/info/sparse-checkout to the final index unpack-trees(): "enable" sparse checkout and load $GIT_DIR/info/sparse-checkout unpack-trees.c: generalize verify_* functions unpack-trees(): add CE_WT_REMOVE to remove on worktree alone Introduce "sparse checkout" dir.c: export excluded_1() and add_excludes_from_file_1() excluded_1(): support exclude files in index unpack-trees(): carry skip-worktree bit over in merged_entry() Read .gitignore from index if it is skip-worktree Avoid writing to buffer in add_excludes_from_file_1() ... Conflicts: .gitignore Documentation/config.txt Documentation/git-update-index.txt Makefile entry.c t/t7002-grep.sh
-
- Jan 12, 2010
-
-
Junio C Hamano authored
* maint: remote-curl: Fix Accept header for smart HTTP connections grep: -L should show empty files rebase--interactive: Ignore comments and blank lines in peek_next_command
-
Matthieu Moy authored
When calling a git command from a subdirectory and a file locking fails, the user will get a path relative to the root of the worktree, which is invalid from the place where the command is ran. Make it easy for the user to know which file it is. Signed-off-by:
Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Bart Trojanowski authored
This script passes the author and committer to git-commit via environment variables, but it was missing the seccond T of COMMITTER in a few places. Signed-off-by:
Bart Trojanowski <bart@jukie.net> Acked-by:
Stelian Pop <stelian@popies.net> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Shawn O. Pearce authored
We actually expect to see an application/x-git-upload-pack-result but we lied and said we Accept *-response. This was a typo on my part when I was writing the code. Fortunately the wrong Accept header had no real impact, as the deployed git-http-backend servers were not testing the Accept header before they returned their content. Signed-off-by:
Shawn O. Pearce <spearce@spearce.org> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Junio C Hamano authored
The -L (--files-without-match) option is supposed to show paths that produced no matches. When running the internal grep on work tree files, however, we had an optimization to just return on zero-sized files, without doing anything. This optimization doesn't matter too much in practice (a tracked empty file must be rare, or there is something wrong with your project); to produce results consistent with GNU grep, we should stop the optimization and show empty files as not having the given pattern. Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Matthieu Moy authored
The error message in case of non-fast forward points to 'git push --help', but used to talk about a section 'non-fast-forward', while the actual section name is 'Note about fast-forwards'. Signed-off-by:
Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Michael Haggerty authored
Previously, blank lines and/or comments within a series of squash/fixup commands would confuse "git rebase -i" into thinking that the series was finished. It would therefore require the user to edit the commit message for the squash/fixup commits seen so far. Then, after continuing, it would ask the user to edit the commit message again. Ignore comments and blank lines within a group of squash/fixup commands, allowing them to be processed in one go. Signed-off-by:
Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
- Jan 10, 2010
-
-
Junio C Hamano authored
* tr/http-updates: Remove http.authAny Allow curl to rewind the RPC read buffer Add an option for using any HTTP authentication scheme, not only basic http: maintain curl sessions
-
Junio C Hamano authored
* jk/maint-1.6.5-reset-hard: reset: unbreak hard resets with GIT_WORK_TREE
-
Junio C Hamano authored
* jk/push-to-delete: builtin-push: add --delete as syntactic sugar for :foo
-
Junio C Hamano authored
* mm/config-path: builtin-config: add --path option doing ~ and ~user expansion.
-
Junio C Hamano authored
* pm/cvs-environ: CVS Server: Support reading base and roots from environment
-
Junio C Hamano authored
* tr/maint-1.6.5-bash-prompt-show-submodule-changes: bash completion: factor submodules into dirty state
-
Junio C Hamano authored
* bg/maint-remote-update-default: Fix "git remote update" with remotes.defalt set
-
Junio C Hamano authored
* mm/diag-path-in-treeish: Detailed diagnosis when parsing an object name fails.
-
Junio C Hamano authored
* fc/opt-quiet-gc-reset: General --quiet improvements
-
Junio C Hamano authored
* maint: base85: Make the code more obvious instead of explaining the non-obvious base85: encode_85() does not use the decode table base85 debug code: Fix length byte calculation Documentation: tiny git config manual tweaks Documentation: git gc packs refs by default now checkout -m: do not try to fall back to --merge from an unborn branch
-
Junio C Hamano authored
* maint-1.6.2: base85: Make the code more obvious instead of explaining the non-obvious base85: encode_85() does not use the decode table base85 debug code: Fix length byte calculation checkout -m: do not try to fall back to --merge from an unborn branch Conflicts: diff.c
-
Junio C Hamano authored
* maint-1.6.1: base85: Make the code more obvious instead of explaining the non-obvious base85: encode_85() does not use the decode table base85 debug code: Fix length byte calculation checkout -m: do not try to fall back to --merge from an unborn branch branch: die explicitly why when calling "git branch [-a|-r] branchname". textconv: stop leaking file descriptors commit: --cleanup is a message option git count-objects: handle packs bigger than 4G t7102: make the test fail if one of its check fails Conflicts: diff.c
-
Junio C Hamano authored
* maint-1.6.0: base85: Make the code more obvious instead of explaining the non-obvious base85: encode_85() does not use the decode table base85 debug code: Fix length byte calculation checkout -m: do not try to fall back to --merge from an unborn branch branch: die explicitly why when calling "git branch [-a|-r] branchname".
-
Erik Faye-Lund authored
kill_some_child() compares the entire sockaddr_storage structure (with the pad-bits zeroed out) when trying to find out if connections originate from the same host. However, sockaddr_storage contains the port-number for the connection (which varies between connections), so the comparison always fails. Change the code so we only consider the host-address, by introducing the addrcmp()-function that inspects the address family and compare as appropriate. Signed-off-by:
Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Christian Couder authored
Since commit 7c3baa9a (help -a: do not unnecessarily look for a repository, 2009-09-04), the help format that is passed as a command line option is not used if an help format has been configured. This patch fixes that. Signed-off-by:
Christian Couder <chriscool@tuxfamily.org> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Thiago Farina authored
Signed-off-by:
Thiago Farina <tfransosi@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Christian Couder authored
Some previous patches added some tables to the "git reset" documentation. These tables describe the behavior of "git reset" depending on the option it is passed and the state of the files in the working tree, the index, HEAD and the target commit. This patch adds some tests to make sure that the tables describe the behavior of "git reset". Signed-off-by:
Christian Couder <chriscool@tuxfamily.org> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Andreas Gruenbacher authored
Here is another cleanup ... Signed-off-by:
Andreas Gruenbacher <agruen@suse.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Andreas Gruenbacher authored
Signed-off-by:
Andreas Gruenbacher <agruen@suse.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Andreas Gruenbacher authored
Signed-off-by:
Andreas Gruenbacher <agruen@suse.de> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Jonathan Nieder authored
As a verb, 'setup' is spelled 'set up'. “diff commands such as diff-files” scans better without a comma. Clarify that shallow and deep are special non-boolean values for format.thread rather than boolean values with some other name. Signed-off-by:
Jonathan Nieder <jrnieder@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-
Jonathan Nieder authored
In commit 56752391 (Make "git gc" pack all refs by default, 2007-05-24), 'git gc' was changed to run pack-refs by default Versions before v1.5.1.2 cannot clone repos with packed refs over http, and versions before v1.4.4 cannot handled packed refs at all, but more recent git should have no problems. Try to make this more clear in the git-config manual. The analagous passage in git-gc.txt was updated already with commit fe2128a8 (Change git-gc documentation to reflect gc.packrefs implementation., 2008-01-09). Signed-off-by:
Jonathan Nieder <jrnieder@gmail.com> Signed-off-by:
Junio C Hamano <gitster@pobox.com>
-