login
Header Space

 
 

Mailing list archives

Search results

Found 260 matching messages (0.048 seconds). Page 1 of 13.

Re: Stupid quoting...

Johannes Schindelin wrote: > Okay, Steven Grimm. How do you think _I_ can tell that Steven is your name > from looking at your _full_ name "Steven Grimm"? Huh? > > Exactly. I split at the space. > > At the ...

git - Steven Grimm - Jun 13 2007 - 21:19

[PATCH] A utility to perform merges between Subversion branches using git

Signed-off-by: Steven Grimm --- contrib/svn/README | 8 +++ contrib/svn/git-svnmerge | 139 ... be resolved. +# 2 Encountered an error. +# +# Author: Steven Grimm +# + +die() { + ...

git - Steven Grimm - Apr 26 2007 - 20:55

Directory renames (was Re: blame follows renames, but log doesn't)

... to file2" Where did file2's contents come from? $ git blame b/file2 a7dbcfdc a/file1 (Steven Grimm 2007-06-19 10:36:20 -0700 1) other contents 69a87194 b/file2 (Steven Grimm 2007-06-19 10:43:29 -0700 2) more ...

git - Steven Grimm - Jun 19 2007 - 14:28

[PATCH] Teach git-commit about commit message templates.

... as the initial content when the editor is invoked. Signed-off-by: Steven Grimm --- This came up ... @@ +#!/bin/sh +# +# Copyright (c) 2007 Steven Grimm +# + +test_description='git-commit + +Tests for selected ...

git - Steven Grimm - Jul 23 2007 - 00:17

[PATCH v2] Teach git-commit about commit message templates.

... the editor is invoked. Signed-off-by: Steven Grimm --- Updated based on feedback from Dscho. This depends on ... +#!/bin/sh +# +# Copyright (c) 2007 Steven Grimm +# + +test_description='git-commit + +Tests for ...

git - Steven Grimm - Jul 23 2007 - 09:32

[PATCH] Describe git-clone's actual behavior in the summary

... than the origin's "master" branch. This patch describes the actual behavior. Signed-off-by: Steven Grimm --- Documentation/git-clone.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 ...

git - Steven Grimm - Jan 5 2007 - 21:52

[PATCH] Print a more accurate error message when we fail to create a lock file.

Signed-off-by: Steven Grimm --- lockfile.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lockfile.c b/lockfile.c index 731bbf3..4824f4d 100644 --- a/lockfile.c +++ b/lockfile ...

git - Steven Grimm - Jan 5 2007 - 23:14

[PATCH] Update git-svn manpage to remove the implication that SVN::* is optional.

... what happens when you don't have it. Signed-off-by: Steven Grimm --- Documentation/git-svn.txt | 65 ++++---------------------------------------- 1 files changed, 6 insertions(+), 59 deletions ...

git - Steven Grimm - Jan 9 2007 - 20:20

[PATCH] Make git-repack explain what it's doing during prune

... of progress reports then appears to just sit there for a while before finishing. Signed-off-by: Steven Grimm --- git-repack.sh | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff ...

git - Steven Grimm - Jan 11 2007 - 22:46

Re: [PATCH 3/3] Allow whole-tree operations to be started from a subdirectory

Steven Grimm wrote: > Here's one use case for merge/pull/rebase that is, if not an everyday > thing, then at least fairly common in my group: Person B fixes a bug > in some code that's causing problems for the code person A is working > on. ...

git - Steven Grimm - Jan 14 2007 - 14:29

Re: [RFC] Replace rebase with filtering

Steven Grimm wrote: > Johannes Schindelin wrote: >> I had the impression that the use of "--ignore-if-in-upstream" in >> git-rebase avoids exactly this case: re-applying changes which are >> already in upstream. > Where's that option ...

git - Steven Grimm - Jan 16 2007 - 15:43

Re: Directory in one branch, file in another = can't switch branches

... ("bug in read-tree -m on A -> A/A"). Sorry for the noise; please ignore this thread. -Steve Steven Grimm wrote: > We've hit this problem with a git-svn-based repository where some > stuff got reorganized, but ...

git - Steven Grimm - Mar 16 2007 - 18:59

Re: Rename handling

Steven Grimm wrote: > But if my version control tool misidentifies a rename on my behalf, > and there's nothing I can do about it because there's no way to > influence the tool's concept of what got renamed to what, then I'm not > going to ...

git - Steven Grimm - Mar 19 2007 - 15:45

[PATCH] Add -q option to "git rm" to suppress output when there aren't errors.

... rm -r") to be used as an index filter with cg-admin-rewritehist. Signed-off-by: Steven Grimm --- Documentation/git-rm.txt | 4 ++++ builtin-rm.c | 26 ++++++++++++++++++++------ t/ ...

git - Steven Grimm - Apr 15 2007 - 20:04

[PATCH 1/2] Add --quiet option to suppress output of "rm" commands for removed files.

Signed-off-by: Steven Grimm --- Splitting this into two different options (and two patches) per Junio's comments. Documentation/git-rm.txt | 4 ++++ builtin-rm.c | 10 +++++++--- t/ ...

git - Steven Grimm - Apr 16 2007 - 03:46

[PATCH 2/2] Add --ignore-notfound option to exit with zero status when no files are removed.

Signed-off-by: Steven Grimm --- This allows "git rm -r --ignore-notfound" to be used as an index filter with cg-admin-rewritehist. The documentation for that command recommends using git-update-index -- ...

git - Steven Grimm - Apr 16 2007 - 03:53

Re: [PATCH 2/2] Add --ignore-notfound option to exit with zero status when no files are removed.

Steven Grimm wrote: > This allows "git rm -r --ignore-notfound" to be used as an index filter > with cg-admin-rewritehist. The documentation for that command recommends > using git-update-index --remove to filter files out of a tree's history, > ...

git - Steven Grimm - Apr 16 2007 - 04:12

[PATCH] git-rm: Trivial fix for a comment typo.

Signed-off-by: Steven Grimm --- builtin-rm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/builtin-rm.c b/builtin-rm.c index 71166fb..d2b91cc 100644 --- a/builtin-rm.c +++ b/ ...

git - Steven Grimm - Apr 16 2007 - 04:17

Deprecate git-svnimport?

On 5/7/07, Steven Grimm wrote: > Try git-svn rather than git-svnimport. The latter, AFAIK, is no longer > really maintained. ... I said that because in the time I've been using git and reading this list, I ...

git - Steven Grimm - May 8 2007 - 03:16

Re: [PATCH] Add autoconf-based build infrastructure for tig

... (though if you like I can resend the whole patch with this line): Signed-off-by: Steven Grimm -Steve - To unsubscribe from this list: send the line "unsubscribe git" in the body ...

git - Steven Grimm - Jun 9 2007 - 13:47

speck-geostationary