aboutsummaryrefslogtreecommitdiffstats
path: root/http.h
diff options
context:
space:
mode:
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
hover-highlight'> This reverts c5ced64578a82b9d172aceb2f67c6fb9e639f6d9 commit. It turns out that doing this check every time we map the idx file is quite expensive. A corrupt idx file is caught by git-fsck-objects, so this check is not strictly necessary. In one unscientific test, 0.99.9m spent 10 seconds usertime for the same task 1.1.3 takes 37 seconds usertime. Reverting this gives us the performance of 0.99.9 back. 2006-01-15describe: omit clearing marks on the last one.Junio C Hamano2-5/+8 When describing more than one, we need to clear the commit marks before handling the next one, but most of the time we are running it for only one commit, and in such a case this clearing phase is totally unnecessary. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-15diffcore-break/diffcore-rename: integer overflow.Junio C Hamano1-1/+1 While reviewing the end user tutorial rewrite by J. Bruce Fields, I noticed that "git-diff-tree -B -C" did not correctly break the total rewrite of Documentation/tutorial.txt. It turns out that we had integer overflow during the break score computations. Cop out by using floating point. This is not a kernel. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-13Documentation: git-reset - interrupted workflow.Junio C Hamano1-1/+26 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-13Documentation: git-commit -aJunio C Hamano1-1/+3 A bit more elaboration on what "update all paths" means. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-12Documentation: clarify fetch parameter descriptions.J. Bruce Fields1-3/+3 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-11show-branch: handle [] globs as well.Junio C Hamano1-1/+1 Earlier only '?' and '*' signalled the command that what the user has given is a glob pattern. This prevented us to say: $ git show-branch 'v0.99.[0-3]' Now we notice '[' as well, so the above would work. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-11name-rev: do not omit leading components of ref name.Junio C Hamano2-6/+7 In a repository with mainto/1.0 (to keep maintaining the 1.0.X series) and fixo/1.0 (to keep fixes that apply to both 1.0.X series and upwards) branches, "git-name-rev mainto/1.0" answered just "1.0" making things ambiguous. Show refnames unambiguously like show-branch does. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-11describe: do not silently ignore indescribable commitsJunio C Hamano1-2/+3 We silently ignored indescribable commits without complaining. Complain and die instead. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-11update-index: work with c-quoted nameJunio C Hamano1-1/+8 update-index --stdin did not work with c-style quoted names even though update-index --index-info did. This fixes the inconsistency. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-11Add git-describe to .gitignore.Tom Prince1-0/+1 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-10glossary: explain "master" and "origin"Johannes Schindelin1-0/+11 If you are a long time git user/developer, you forget that to a new git user, these words have not the same meaning as to you. [jc: with updates from J. Bruce Fields.] Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-09GIT-VERSION-GEN: detect dirty tree and mark the version accordingly.Junio C Hamano1-0/+9 If we are building from a working tree with local modifications, mark the version accordingly. Deliberately uses '-' to prevent RPM from being built from such a tree. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-01-09For release tarballs, include the proper versionH. Peter Anvin2-3/+11 When producing a release tarball, include a "version" file, which GIT-VERSION-GEN can then use to do the right thing when building from a tarball. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Junio C Hamano <junkio@cox.net>