aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions
diff.renames is mentioned several times in the documentation, but to my surprise it didn't do anything before this patch. Also add the --no-renames option to override this from the command-line. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07diff-options: Explain --text and -aStephan Feder1-0/+6 Signed-off-by: Stephan Feder <sf@b-i-t.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07Add -a and --text to common diff options helpStephan Feder1-1/+2 Signed-off-by: Stephan Feder <sf@b-i-t.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07Teach diff -a as shorthand for --textStephan Feder1-1/+1 Signed-off-by: Stephan Feder <sf@b-i-t.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07Teach --text option to diffStephan Feder2-1/+5 Add new item text to struct diff_options. If set then do not try to detect binary files. Signed-off-by: Stephan Feder <sf@b-i-t.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07send-email: format 2822 datestring ourselves.Jakub Narebski1-3/+38 It is not worth trying to force C locale (and failing) just to format the 2822 datestring. This code was borrowed from /usr/bin/822-date (Ian Jackson and Klee Dienes, both in public domain), per suggestion by Eric Wong. Signed-off-by: Junio C Hamano <junkio@cox.net> Acked-by: Jakub Narebski <jnareb@gmail.com> 2006-07-07Do not drop data from '\0' until eol in patch outputStephan Feder1-1/+3 The binary file detection is just a heuristic which can well fail. Do not produce garbage patches in these cases. Signed-off-by: Stephan Feder <sf@b-i-t.de> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-07builtin-log: respect diff configuration optionsEric Wong1-2/+5 The log commands are all capable of generating diffs, so we should respect those configuration options for diffs here. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-06rev-parse documentation: talk about range notation.Junio C Hamano1-8/+37 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-06show-branch: match documentation and usageJunio C Hamano2-1/+6 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-06builtin-rev-parse.c: constness tighteningJunio C Hamano1-1/+1 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-06core.compression documentation formatting fix.Joachim Berdal Haga1-1/+1 I didn't notice earlier that two colons are required for the asciidoc entry. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-05git-reset: complain and exit upon seeing an unknown parameter.Junio C Hamano1-1/+5 The check to use "rev-parse --verify" was defeated by the use of "--default HEAD". "git reset --hard bogus-committish" just defaulted to reset to the HEAD without complaining. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-05Fix print-log and diff compatibility with recent vc versionsVille Skytt,Ad(B1-6/+7 Here's a patch that fixes print-log and diff compatibility with recent vc versions, such as current GNU Emacs CVS. Signed-off-by: Ville Skytt,Ad(B <scop@xemacs.org> 2006-07-05git-svn: avoid fetching files outside of the URL we're trackingEric Wong1-1/+1 Thanks to Santi <sbejar@gmail.com> for the bug report and explanation: > /path/to/repository/project/file > /path/to/repository/project-2/file <...> > you end up with a project with the following files: > > file > -2/file Signed-off-by: Eric Wong <normalperson@yhbt.net> 2006-07-04Re-fix clear_commit_marks().Junio C Hamano3-16/+8 Fix clear_commit_marks() enough to be usable in get_merge_bases(), and retire now unused clear_object_marks(). Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04Improve git-peek-remoteLinus Torvalds4-13/+58 This makes git-peek-remote able to basically do everything that git-ls-remote does (but obviously just for the native protocol, so no http[s]: or rsync: support). The default behaviour is the same, but you can now give a mixture of "--refs", "--tags" and "--heads" flags, where "--refs" forces git-peek-remote to only show real refs (ie none of the fakey tag lookups, but also not the special pseudo-refs like HEAD and MERGE_HEAD). The "--tags" and "--heads" flags respectively limit the output to just regular tags and heads, of course. You can still also ask to limit them by name too. You can combine the flags, so git peek-remote --refs --tags . will show all local _true_ tags, without the generated tag lookups (compare the output without the "--refs" flag). And "--tags --heads" will show both tags and heads, but will avoid (for example) any special refs outside of the standard locations. I'm also planning on adding a "--ignore-local" flag that allows us to ask it to ignore any refs that we already have in the local tree, but that's an independent thing. All this is obviously gearing up to making "git fetch" cheaper. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04rev-list: free commit_list in ... handlerRene Scharfe1-0/+1 Johannes noticed the missing call to free_commit_list() in the patch from Santi to add ... support to rev-parse. Turns out I forgot it too in rev-list. This patch is against the next branch (3b1d06a). Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04git-grep: use a bit more specific error messages.Junio C Hamano1-4/+11 Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04git-grep: fix exit code when we use external grep.Junio C Hamano1-5/+10 Upon hit, we should exit with status 0. Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04git-grep: fix parsing of pathspec separator '--'Junio C Hamano1-1/+5 We used to misparse git grep -e foo -- '*.sh' Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04Teach rev-parse the ... syntax.Santi Béjar1-18/+47 [jc: moved the difference code around into its own function.] Signed-off-by: Santi Béjar <sbejar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-04t8001-annotate: fix a bash-ism in this testEric Wong1-2/+2 Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net> 2006-07-03Make git-fmt-merge-msg a builtinJohannes Schindelin5-177/+362 Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>