* Git Rebase blows away GIT_AUTHOR_NAME @ 2011-01-12 16:15 JT Olds 2011-01-12 18:21 ` Jeff King 0 siblings, 1 reply; 30+ messages in thread From: JT Olds @ 2011-01-12 16:15 UTC (permalink / raw) To: git I asked this in #git on freenode, and I've also spent a while searching the internet for anyone with any similar issues, but I can't seem to find anyone or anything that knows what's going on. On every fresh install of Ubuntu that I have used (by default, I use ecryptfs for my home directory, which of course has its own set of silly Git errors right now), when I clone from a remote repository, have changes local to me, and changes on the remote repository, do 'git pull --rebase', occasionally my GIT_AUTHOR_NAME gets set to my GIT_AUTHOR_EMAIL on my changes that get applied on top of the remote changes. This is incredibly frustrating, so much so that my workflow now includes running an alias to git filter-branch that fixes this. Notable things: so far I have only had a remote server hosted by Gerrit, but I can't imagine how changes on the remote git server could possibly affect my local changes. Like I said, I'm using ecryptfs, and I'm using vanilla Git from the latest stable Ubuntu, though I've had this problem on Ubuntus for a few releases now. Anyone have any idea why this might happen? -JT ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-12 16:15 Git Rebase blows away GIT_AUTHOR_NAME JT Olds @ 2011-01-12 18:21 ` Jeff King 2011-01-13 17:00 ` JT Olds 0 siblings, 1 reply; 30+ messages in thread From: Jeff King @ 2011-01-12 18:21 UTC (permalink / raw) To: JT Olds; +Cc: git On Wed, Jan 12, 2011 at 09:15:41AM -0700, JT Olds wrote: > On every fresh install of Ubuntu that I have used (by default, I use > ecryptfs for my home directory, which of course has its own set of > silly Git errors right now), when I clone from a remote repository, > have changes local to me, and changes on the remote repository, do > 'git pull --rebase', occasionally my GIT_AUTHOR_NAME gets set to my > GIT_AUTHOR_EMAIL on my changes that get applied on top of the remote > changes. Weird. I have never heard of anything like it. Some things off the top of my head: Does your GIT_AUTHOR_NAME or GIT_AUTHOR_EMAIL contain any odd characters that might confuse a parser? Do you do anything special with setting up those environment variables in your shell (e.g., in a .bashrc or .profile; those files _shouldn't_ be read by a non-interactive shell, but it's something to investigate)? For that matter, how do you set up your identity in general (by environment, or in ~/.gitconfig, or a local .git/config in each repo), and what does it contain? Can you try running this in a repo that's giving you problems: . git-sh-setup git log --format=%H --author=your.name | while read rev; do get_author_ident_from_commit $rev git format-patch -1 --stdout $rev | git mailinfo /dev/null /dev/null done | less and check that the output looks sane? I want to make sure there's nothing in your commits that is confusing our parser. If that doesn't turn up anything, I think the next thing to try would be making a script that reproduces the problem for you, and see if I can reproduce it here. -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-12 18:21 ` Jeff King @ 2011-01-13 17:00 ` JT Olds 2011-01-13 17:11 ` JT Olds 2011-01-13 18:47 ` Jeff King 0 siblings, 2 replies; 30+ messages in thread From: JT Olds @ 2011-01-13 17:00 UTC (permalink / raw) To: Jeff King; +Cc: git > Some things off the top of my head: Does your GIT_AUTHOR_NAME or > GIT_AUTHOR_EMAIL contain any odd characters that might confuse a parser? Nah, from my .git/config [user] name = JT email = jt@instructure.com > Do you do anything special with setting up those environment variables > in your shell (e.g., in a .bashrc or .profile; those files _shouldn't_ > be read by a non-interactive shell, but it's something to investigate)? Nope, the only place in my entire home directory where those get set are in my filter-branch script to fix them, which I only run after the problem manifests itself. > For that matter, how do you set up your identity in general (by > environment, or in ~/.gitconfig, or a local .git/config in each repo), > and what does it contain? I have a global identity in ~/.gitconfig [user] name = JT email = hello@jtolds.com and then in particular topic branches in their .git/config like before. > Can you try running this in a repo that's giving you problems: > > . git-sh-setup > git log --format=%H --author=your.name | > while read rev; do > get_author_ident_from_commit $rev > git format-patch -1 --stdout $rev | > git mailinfo /dev/null /dev/null > done | less I don't have git-sh-setup, which seems like it should be included in the git-core package, but it's not. I have git-core 1:1.7.1-1.1ubuntu0.1 installed. Obviously this precludes get_author_ident_from_commit from working. > If that doesn't turn up anything, I think the next thing to try would be > making a script that reproduces the problem for you, and see if I can > reproduce it here. Alright, I'll see what I can do. Thanks. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 17:00 ` JT Olds @ 2011-01-13 17:11 ` JT Olds 2011-01-13 17:47 ` Erik Faye-Lund 2011-01-13 18:47 ` Jeff King 1 sibling, 1 reply; 30+ messages in thread From: JT Olds @ 2011-01-13 17:11 UTC (permalink / raw) To: Jeff King; +Cc: git I got a copy of git-sh-setup. All of my commits (that have either worked or that I fixed) look like this: GIT_AUTHOR_NAME='JT' GIT_AUTHOR_EMAIL='jt@instructure.com' GIT_AUTHOR_DATE='1294756950 -0700' Author: jt@instructure.com Email: jt@instructure.com Subject: removing nondeterminism from test Date: Tue, 11 Jan 2011 07:42:30 -0700 Should "Author" be my name? Could that be what's going on? I don't even know where that gets set. The ones that I failed to notice that they broke before I pushed them look like this: GIT_AUTHOR_NAME='jt@instructure.com' GIT_AUTHOR_EMAIL='jt@instructure.com' GIT_AUTHOR_DATE='1294775987 -0700' Author: jt@instructure.com Email: jt@instructure.com Subject: some cleanup Date: Tue, 11 Jan 2011 12:59:47 -0700 Thanks again for the help. This has been frustrating me for months. Still working on a duplicate-the-problem script. -JT On Thu, Jan 13, 2011 at 10:00 AM, JT Olds <jtolds@xnet5.com> wrote: >> Some things off the top of my head: Does your GIT_AUTHOR_NAME or >> GIT_AUTHOR_EMAIL contain any odd characters that might confuse a parser? > > Nah, from my .git/config > > [user] > name = JT > email = jt@instructure.com > >> Do you do anything special with setting up those environment variables >> in your shell (e.g., in a .bashrc or .profile; those files _shouldn't_ >> be read by a non-interactive shell, but it's something to investigate)? > > Nope, the only place in my entire home directory where those get set > are in my filter-branch script to fix them, which I only run after the > problem manifests itself. > >> For that matter, how do you set up your identity in general (by >> environment, or in ~/.gitconfig, or a local .git/config in each repo), >> and what does it contain? > > I have a global identity in ~/.gitconfig > > [user] > name = JT > email = hello@jtolds.com > > and then in particular topic branches in their .git/config like before. > >> Can you try running this in a repo that's giving you problems: >> >> . git-sh-setup >> git log --format=%H --author=your.name | >> while read rev; do >> get_author_ident_from_commit $rev >> git format-patch -1 --stdout $rev | >> git mailinfo /dev/null /dev/null >> done | less > > I don't have git-sh-setup, which seems like it should be included in > the git-core package, but it's not. I have git-core > 1:1.7.1-1.1ubuntu0.1 installed. Obviously this precludes > get_author_ident_from_commit from working. > >> If that doesn't turn up anything, I think the next thing to try would be >> making a script that reproduces the problem for you, and see if I can >> reproduce it here. > > Alright, I'll see what I can do. Thanks. > ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 17:11 ` JT Olds @ 2011-01-13 17:47 ` Erik Faye-Lund 2011-01-13 17:52 ` JT Olds 0 siblings, 1 reply; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-13 17:47 UTC (permalink / raw) To: JT Olds; +Cc: Jeff King, git On Thu, Jan 13, 2011 at 6:11 PM, JT Olds <jtolds@xnet5.com> wrote: > I got a copy of git-sh-setup. All of my commits (that have either > worked or that I fixed) look like this: > > GIT_AUTHOR_NAME='JT' > GIT_AUTHOR_EMAIL='jt@instructure.com' > GIT_AUTHOR_DATE='1294756950 -0700' > Author: jt@instructure.com > Email: jt@instructure.com > Subject: removing nondeterminism from test > Date: Tue, 11 Jan 2011 07:42:30 -0700 > > Should "Author" be my name? Could that be what's going on? I don't > even know where that gets set. The ones that I failed to notice that > they broke before I pushed them look like this: > "git am" (which git rebase builds on) requires the author name to be at least three characters long. This is a problem that has been discussed before, see <AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com>: http://mid.gmane.org/AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 17:47 ` Erik Faye-Lund @ 2011-01-13 17:52 ` JT Olds 2011-01-13 18:20 ` Erik Faye-Lund 0 siblings, 1 reply; 30+ messages in thread From: JT Olds @ 2011-01-13 17:52 UTC (permalink / raw) To: kusmabite; +Cc: Jeff King, git Oh thank you Erik, it's great to just know what the problem is. I've been feeling like some voodoo was happening. What are the chances of decreasing that lower bound of author name size? :) -JT On Thu, Jan 13, 2011 at 10:47 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote: > On Thu, Jan 13, 2011 at 6:11 PM, JT Olds <jtolds@xnet5.com> wrote: >> I got a copy of git-sh-setup. All of my commits (that have either >> worked or that I fixed) look like this: >> >> GIT_AUTHOR_NAME='JT' >> GIT_AUTHOR_EMAIL='jt@instructure.com' >> GIT_AUTHOR_DATE='1294756950 -0700' >> Author: jt@instructure.com >> Email: jt@instructure.com >> Subject: removing nondeterminism from test >> Date: Tue, 11 Jan 2011 07:42:30 -0700 >> >> Should "Author" be my name? Could that be what's going on? I don't >> even know where that gets set. The ones that I failed to notice that >> they broke before I pushed them look like this: >> > > "git am" (which git rebase builds on) requires the author name to be > at least three characters long. This is a problem that has been > discussed before, see > <AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com>: > > http://mid.gmane.org/AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com > ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 17:52 ` JT Olds @ 2011-01-13 18:20 ` Erik Faye-Lund 2011-01-14 8:45 ` Tor Arntsen 0 siblings, 1 reply; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-13 18:20 UTC (permalink / raw) To: JT Olds; +Cc: Jeff King, git In the future please don't top-post, as it makes the discussion harder for other people to follow. I've fixed the quoting for now, though. On Thu, Jan 13, 2011 at 6:52 PM, JT Olds <jtolds@xnet5.com> wrote: > On Thu, Jan 13, 2011 at 10:47 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote: >> On Thu, Jan 13, 2011 at 6:11 PM, JT Olds <jtolds@xnet5.com> wrote: >>> I got a copy of git-sh-setup. All of my commits (that have either >>> worked or that I fixed) look like this: >>> >>> GIT_AUTHOR_NAME='JT' >>> GIT_AUTHOR_EMAIL='jt@instructure.com' >>> GIT_AUTHOR_DATE='1294756950 -0700' >>> Author: jt@instructure.com >>> Email: jt@instructure.com >>> Subject: removing nondeterminism from test >>> Date: Tue, 11 Jan 2011 07:42:30 -0700 >>> >>> Should "Author" be my name? Could that be what's going on? I don't >>> even know where that gets set. The ones that I failed to notice that >>> they broke before I pushed them look like this: >>> >> >> "git am" (which git rebase builds on) requires the author name to be >> at least three characters long. This is a problem that has been >> discussed before, see >> <AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com>: >> >> http://mid.gmane.org/AANLkTinqTL7gH4CHEfy8UrhK13xcO_3UzgIyQka00MAh@mail.gmail.com >> > > Oh thank you Erik, it's great to just know what the problem is. I've > been feeling like some voodoo was happening. > > What are the chances of decreasing that lower bound of author name size? :) > It's a matter of editing the function called "get_sane_name" in builtin/mailinfo.c. But simply changing the bound doesn't mean you're in the clear. If any other people you work with end up rebasing any patches you've written, the same problem will manifest. There's a lot of people using some really old versions of Git. And then it's the question of why this is done in the first place. I don't know, but I suspect Linus has his reasons. Besides, a name of two characters aren't really sane. You'd need at least three characters to form a first/last name pair. I'd recommend that you use a longer name, really. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 18:20 ` Erik Faye-Lund @ 2011-01-14 8:45 ` Tor Arntsen 2011-01-14 8:56 ` Erik Faye-Lund 0 siblings, 1 reply; 30+ messages in thread From: Tor Arntsen @ 2011-01-14 8:45 UTC (permalink / raw) To: kusmabite; +Cc: JT Olds, Jeff King, git On Thu, Jan 13, 2011 at 19:20, Erik Faye-Lund <kusmabite@gmail.com> wrote: >[..] Besides, a name of > two characters aren't really sane. You'd need at least three > characters to form a first/last name pair. I think I've mentioned this before in another thread, but first/last name isn't universal, not even within countries where it's the common form. When I was as student there was a fellow student from another scandinavian country and his legal, full name consisted of a single letter. -Tor ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 8:45 ` Tor Arntsen @ 2011-01-14 8:56 ` Erik Faye-Lund 2011-01-14 9:24 ` Tor Arntsen 0 siblings, 1 reply; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 8:56 UTC (permalink / raw) To: Tor Arntsen; +Cc: JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 9:45 AM, Tor Arntsen <tor@spacetec.no> wrote: > On Thu, Jan 13, 2011 at 19:20, Erik Faye-Lund <kusmabite@gmail.com> wrote: >>[..] Besides, a name of >> two characters aren't really sane. You'd need at least three >> characters to form a first/last name pair. > > I think I've mentioned this before in another thread, but first/last > name isn't universal, not even within countries where it's the common > form. When I was as student there was a fellow student from another > scandinavian country and his legal, full name consisted of a single > letter. > I'm curious, what Scandinavian country was this? Because as a Norwegian, I know a lot of people from all Scandinavian country, yet I've never heard of such names. In Norway, I the shortest legal name I've ever heard of was five characters. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 8:56 ` Erik Faye-Lund @ 2011-01-14 9:24 ` Tor Arntsen 2011-01-14 9:53 ` Erik Faye-Lund 2011-01-14 9:55 ` Erik Faye-Lund 0 siblings, 2 replies; 30+ messages in thread From: Tor Arntsen @ 2011-01-14 9:24 UTC (permalink / raw) To: kusmabite; +Cc: JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 09:56, Erik Faye-Lund <kusmabite@gmail.com> wrote: > On Fri, Jan 14, 2011 at 9:45 AM, Tor Arntsen <tor@spacetec.no> wrote: >> I think I've mentioned this before in another thread, but first/last >> name isn't universal, not even within countries where it's the common >> form. When I was as student there was a fellow student from another >> scandinavian country and his legal, full name consisted of a single >> letter. >> > > I'm curious, what Scandinavian country was this? Because as a > Norwegian, I know a lot of people from all Scandinavian country, yet > I've never heard of such names. In Norway, I the shortest legal name > I've ever heard of was five characters. Sweden (I'm Norwegian too - this guy was a Swede studying in Norway). Admittedly I have only that single example, and it was back in the late seventies. His name was accepted as legal by Statens Lånekasse (bank for students) and when the loans arrived his single-letter name would be found at the very end of the long lists of wide listing-paper printouts from the bank that was stiched up on the billboard wall outside the administration offices. The loans arrived a couple of times per year but we always had to go looking - the rest of us were just amazed that we could really find that single letter down there and he wasn't bs'ing the rest of us about his name. I'm not sure why there's a 3-letter limit on git author names.. but I would suggest it should be set down to 1 letter minimum.. below that would, I think, be overdoing it.. -Tor ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 9:24 ` Tor Arntsen @ 2011-01-14 9:53 ` Erik Faye-Lund 2011-01-14 14:51 ` JT Olds 2011-01-14 15:41 ` Linus Torvalds 2011-01-14 9:55 ` Erik Faye-Lund 1 sibling, 2 replies; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 9:53 UTC (permalink / raw) To: Tor Arntsen; +Cc: JT Olds, Jeff King, git (CC'ed Linus, as he wrote mailinfo's sanity-checking) On Fri, Jan 14, 2011 at 10:24 AM, Tor Arntsen <tor@spacetec.no> wrote: > On Fri, Jan 14, 2011 at 09:56, Erik Faye-Lund <kusmabite@gmail.com> wrote: >> On Fri, Jan 14, 2011 at 9:45 AM, Tor Arntsen <tor@spacetec.no> wrote: >>> I think I've mentioned this before in another thread, but first/last >>> name isn't universal, not even within countries where it's the common >>> form. When I was as student there was a fellow student from another >>> scandinavian country and his legal, full name consisted of a single >>> letter. >>> >> >> I'm curious, what Scandinavian country was this? Because as a >> Norwegian, I know a lot of people from all Scandinavian country, yet >> I've never heard of such names. In Norway, I the shortest legal name >> I've ever heard of was five characters. > > Sweden (I'm Norwegian too - this guy was a Swede studying in Norway). > Admittedly I have only that single example, and it was back in the > late seventies. His name was accepted as legal by Statens Lånekasse > (bank for students) and when the loans arrived his single-letter name > would be found at the very end of the long lists of wide listing-paper > printouts from the bank that was stiched up on the billboard wall > outside the administration offices. The loans arrived a couple of > times per year but we always had to go looking - the rest of us were > just amazed that we could really find that single letter down there > and he wasn't bs'ing the rest of us about his name. > > I'm not sure why there's a 3-letter limit on git author names.. but I > would suggest it should be set down to 1 letter minimum.. below that > would, I think, be overdoing it.. > Linus, you wrote sanity_check (from 2744b23). Do you remember if there were any specific reason for the minimum length of 3 of an author-name? It seems that in Sweden, legal names can be even a single letter (see Tor's comment)... ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 9:53 ` Erik Faye-Lund @ 2011-01-14 14:51 ` JT Olds 2011-01-14 15:41 ` Linus Torvalds 1 sibling, 0 replies; 30+ messages in thread From: JT Olds @ 2011-01-14 14:51 UTC (permalink / raw) To: kusmabite; +Cc: Tor Arntsen, Jeff King, git On Fri, Jan 14, 2011 at 2:53 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote: > (CC'ed Linus, as he wrote mailinfo's sanity-checking) > > On Fri, Jan 14, 2011 at 10:24 AM, Tor Arntsen <tor@spacetec.no> wrote: >> On Fri, Jan 14, 2011 at 09:56, Erik Faye-Lund <kusmabite@gmail.com> wrote: >>> On Fri, Jan 14, 2011 at 9:45 AM, Tor Arntsen <tor@spacetec.no> wrote: >>>> I think I've mentioned this before in another thread, but first/last >>>> name isn't universal, not even within countries where it's the common >>>> form. When I was as student there was a fellow student from another >>>> scandinavian country and his legal, full name consisted of a single >>>> letter. >>>> >>> >>> I'm curious, what Scandinavian country was this? Because as a >>> Norwegian, I know a lot of people from all Scandinavian country, yet >>> I've never heard of such names. In Norway, I the shortest legal name >>> I've ever heard of was five characters. >> >> Sweden (I'm Norwegian too - this guy was a Swede studying in Norway). >> Admittedly I have only that single example, and it was back in the >> late seventies. His name was accepted as legal by Statens Lånekasse >> (bank for students) and when the loans arrived his single-letter name >> would be found at the very end of the long lists of wide listing-paper >> printouts from the bank that was stiched up on the billboard wall >> outside the administration offices. The loans arrived a couple of >> times per year but we always had to go looking - the rest of us were >> just amazed that we could really find that single letter down there >> and he wasn't bs'ing the rest of us about his name. >> >> I'm not sure why there's a 3-letter limit on git author names.. but I >> would suggest it should be set down to 1 letter minimum.. below that >> would, I think, be overdoing it.. >> > > Linus, you wrote sanity_check (from 2744b23). Do you remember if there > were any specific reason for the minimum length of 3 of an > author-name? It seems that in Sweden, legal names can be even a single > letter (see Tor's comment)... > Thanks all. I suppose another question, regardless of the outcome of following up on the name limit, is how come this is silently swallowed? ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 9:53 ` Erik Faye-Lund 2011-01-14 14:51 ` JT Olds @ 2011-01-14 15:41 ` Linus Torvalds 2011-01-14 16:13 ` Erik Faye-Lund [not found] ` <AANLkTimZF+r2aNzrXsUuHVZR65N5wpOYLutFgGAGoci_@m ail.gmail.com> 1 sibling, 2 replies; 30+ messages in thread From: Linus Torvalds @ 2011-01-14 15:41 UTC (permalink / raw) To: kusmabite; +Cc: Tor Arntsen, JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 1:53 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote: > > Linus, you wrote sanity_check (from 2744b23). Do you remember if there > were any specific reason for the minimum length of 3 of an > author-name? It seems that in Sweden, legal names can be even a single > letter (see Tor's comment)... Even if the legal name would be a single letter, you'd still need to have a surname. The three-letter minimum is just a sanity check. If your name really is even just three letters, I suspect you're just lying. I don't know of anybody named "A B". That thing is supposed to be a *NAME*. Not shorthand. Not your first name. Not your nickname. If you have a nickname, put it in quotes inside the real name. I've seen too many broken source control systems that just take your login as a name *cough*CVS*cough*, and then people think it's "convenient" and "cool" to have a short name. It's not convenient. It's not cool. It's just shorthand where shorthand doesn't help. Then you end up using it in a public setting, and suddenly your cool shorthand or nickname isn't even remotely unique. No, there is no uniquness "requirements" for the name, but come on. Look at shortlog output some day. We try to use just the name because it looks better. But if people don't use their full name, it just looks _stupid_ Linus ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 15:41 ` Linus Torvalds @ 2011-01-14 16:13 ` Erik Faye-Lund 2011-01-14 16:21 ` Jeff King [not found] ` <AANLkTimZF+r2aNzrXsUuHVZR65N5wpOYLutFgGAGoci_@m ail.gmail.com> 1 sibling, 1 reply; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 16:13 UTC (permalink / raw) To: Linus Torvalds; +Cc: Tor Arntsen, JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 4:41 PM, Linus Torvalds <torvalds@linux-foundation.org> wrote: > On Fri, Jan 14, 2011 at 1:53 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote: >> >> Linus, you wrote sanity_check (from 2744b23). Do you remember if there >> were any specific reason for the minimum length of 3 of an >> author-name? It seems that in Sweden, legal names can be even a single >> letter (see Tor's comment)... > > Even if the legal name would be a single letter, you'd still need to > have a surname. > I think Tor pointed out that he knew a swede with his full legal name to be only one letter long. I would suppose that meant that he didn't have a surename? > The three-letter minimum is just a sanity check. If your name really > is even just three letters, I suspect you're just lying. I don't know > of anybody named "A B". > Thanks for clarifying that it's not there for a technical reason. The thing is, git-am seems to be the only place where such a sanity-check is performed. Shouldn't git-commit rather perform such checks also (if such a check should be done at all), perhaps with an override similar to --allow-empty? And on top of all it doesn't barf, it just silently replace the name with the e-mail... > That thing is supposed to be a *NAME*. Not shorthand. Not your first > name. Not your nickname. If you have a nickname, put it in quotes > inside the real name. > > I've seen too many broken source control systems that just take your > login as a name *cough*CVS*cough*, and then people think it's > "convenient" and "cool" to have a short name. > > It's not convenient. It's not cool. It's just shorthand where > shorthand doesn't help. Then you end up using it in a public setting, > and suddenly your cool shorthand or nickname isn't even remotely > unique. > > No, there is no uniquness "requirements" for the name, but come on. > Look at shortlog output some day. We try to use just the name because > it looks better. But if people don't use their full name, it just > looks _stupid_ I agree with you that using nicknames etc as author-name is a bit silly, but I'm not sure if I want my version control system to tell me that it thinks my author-name looks stupid :) IMO, we should probably just remove the check altogether. There's also an upper-bound of 60 characters. I'm wondering if this could be hit by valid names, especially with non-western UTF-8 characters. Perhaps this should be removed also. The check for '@', '<' and '>' is probably still OK. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:13 ` Erik Faye-Lund @ 2011-01-14 16:21 ` Jeff King 2011-01-14 16:30 ` Erik Faye-Lund ` (2 more replies) 0 siblings, 3 replies; 30+ messages in thread From: Jeff King @ 2011-01-14 16:21 UTC (permalink / raw) To: Erik Faye-Lund; +Cc: Linus Torvalds, Tor Arntsen, JT Olds, git On Fri, Jan 14, 2011 at 05:13:59PM +0100, Erik Faye-Lund wrote: > > The three-letter minimum is just a sanity check. If your name really > > is even just three letters, I suspect you're just lying. I don't know > > of anybody named "A B". > > > Thanks for clarifying that it's not there for a technical reason. The > thing is, git-am seems to be the only place where such a sanity-check > is performed. Shouldn't git-commit rather perform such checks also (if > such a check should be done at all), perhaps with an override similar > to --allow-empty? And on top of all it doesn't barf, it just silently > replace the name with the e-mail... I tend to agree with Linus on the stupidity issue, but I do worry about the subtlety of the results. It causes silent data corruption during a rebase (or when somebody is applying an emailed patch). On the other hand, I do understand why Linus made a sanity check in the first place; his use case is to deal with whatever crap people happen to mail him, whether they have used git or not. So we should probably do one or both of: 1. Make an --allow-any-name option to mailinfo, and use it when we invoke mailinfo internally for rebasing. That still doesn't solve the emailed patch problem, but at least keeps purely internal operations sane. 2. Bump the check up to git-commit time, which is the best place to catch and tell somebody that their name is too short, because they can actually fix it. Even if we dropped the check now, option (2) is still useful, because you have no idea which version of git the other end will use to apply your patch. -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:21 ` Jeff King @ 2011-01-14 16:30 ` Erik Faye-Lund 2011-01-14 16:33 ` Jeff King 2011-01-14 18:28 ` Junio C Hamano 2011-01-17 22:21 ` Jeff King 2 siblings, 1 reply; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 16:30 UTC (permalink / raw) To: Jeff King; +Cc: Linus Torvalds, Tor Arntsen, JT Olds, git On Fri, Jan 14, 2011 at 5:21 PM, Jeff King <peff@peff.net> wrote: > On Fri, Jan 14, 2011 at 05:13:59PM +0100, Erik Faye-Lund wrote: > >> > The three-letter minimum is just a sanity check. If your name really >> > is even just three letters, I suspect you're just lying. I don't know >> > of anybody named "A B". >> > >> Thanks for clarifying that it's not there for a technical reason. The >> thing is, git-am seems to be the only place where such a sanity-check >> is performed. Shouldn't git-commit rather perform such checks also (if >> such a check should be done at all), perhaps with an override similar >> to --allow-empty? And on top of all it doesn't barf, it just silently >> replace the name with the e-mail... > > I tend to agree with Linus on the stupidity issue, but I do worry about > the subtlety of the results. It causes silent data corruption during a > rebase (or when somebody is applying an emailed patch). On the other > hand, I do understand why Linus made a sanity check in the first place; > his use case is to deal with whatever crap people happen to mail him, > whether they have used git or not. > > So we should probably do one or both of: > > 1. Make an --allow-any-name option to mailinfo, and use it when we > invoke mailinfo internally for rebasing. That still doesn't solve > the emailed patch problem, but at least keeps purely internal > operations sane. > > 2. Bump the check up to git-commit time, which is the best place to > catch and tell somebody that their name is too short, because they > can actually fix it. > The problem with (2) is that git-am uses git-commit-tree rather than git-commit. But I do think that adding the same checks to git-commit would make sense. Unless we decide to remove the checks, that is... ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:30 ` Erik Faye-Lund @ 2011-01-14 16:33 ` Jeff King 2011-01-14 18:02 ` Jay Soffian 0 siblings, 1 reply; 30+ messages in thread From: Jeff King @ 2011-01-14 16:33 UTC (permalink / raw) To: Erik Faye-Lund; +Cc: Linus Torvalds, Tor Arntsen, JT Olds, git On Fri, Jan 14, 2011 at 05:30:51PM +0100, Erik Faye-Lund wrote: > > 2. Bump the check up to git-commit time, which is the best place to > > catch and tell somebody that their name is too short, because they > > can actually fix it. > > > > The problem with (2) is that git-am uses git-commit-tree rather than > git-commit. But I do think that adding the same checks to git-commit > would make sense. Unless we decide to remove the checks, that is... Yeah, I didn't say it very clearly, but I meant to factor the check out and use it also in git-commit (probably as a warning, the same way we do with other ident verification in print_summary(). Even if we remove the check, it may still be worthwhile to say "Just so you know, older versions of git may mangle the name you have chosen". -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:33 ` Jeff King @ 2011-01-14 18:02 ` Jay Soffian 0 siblings, 0 replies; 30+ messages in thread From: Jay Soffian @ 2011-01-14 18:02 UTC (permalink / raw) To: Jeff King; +Cc: Erik Faye-Lund, Linus Torvalds, Tor Arntsen, JT Olds, git On Fri, Jan 14, 2011 at 11:33 AM, Jeff King <peff@peff.net> wrote: > Even if we remove the check, it may still be worthwhile to say "Just so > you know, older versions of git may mangle the name you have chosen". I knew this conversation sounded familiar. It came up before in a different context: http://thread.gmane.org/gmane.comp.version-control.git/150871/focus=150902 j. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:21 ` Jeff King 2011-01-14 16:30 ` Erik Faye-Lund @ 2011-01-14 18:28 ` Junio C Hamano 2011-01-14 20:07 ` Jeff King 2011-01-17 22:21 ` Jeff King 2 siblings, 1 reply; 30+ messages in thread From: Junio C Hamano @ 2011-01-14 18:28 UTC (permalink / raw) To: Jeff King; +Cc: Erik Faye-Lund, Linus Torvalds, Tor Arntsen, JT Olds, git Jeff King <peff@peff.net> writes: > So we should probably do one or both of: > > 1. Make an --allow-any-name option to mailinfo, and use it when we > invoke mailinfo internally for rebasing. That still doesn't solve > the emailed patch problem, but at least keeps purely internal > operations sane. > > 2. Bump the check up to git-commit time, which is the best place to > catch and tell somebody that their name is too short, because they > can actually fix it. > > Even if we dropped the check now, option (2) is still useful, because > you have no idea which version of git the other end will use to apply > your patch. I am perfectly Ok with making the check looser in "am" when $rebasing is in effect. Wouldn't that solve the issue? ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 18:28 ` Junio C Hamano @ 2011-01-14 20:07 ` Jeff King 2011-01-14 22:30 ` Junio C Hamano 0 siblings, 1 reply; 30+ messages in thread From: Jeff King @ 2011-01-14 20:07 UTC (permalink / raw) To: Junio C Hamano; +Cc: Erik Faye-Lund, Linus Torvalds, Tor Arntsen, JT Olds, git On Fri, Jan 14, 2011 at 10:28:58AM -0800, Junio C Hamano wrote: > Jeff King <peff@peff.net> writes: > > > So we should probably do one or both of: > > > > 1. Make an --allow-any-name option to mailinfo, and use it when we > > invoke mailinfo internally for rebasing. That still doesn't solve > > the emailed patch problem, but at least keeps purely internal > > operations sane. > > > > 2. Bump the check up to git-commit time, which is the best place to > > catch and tell somebody that their name is too short, because they > > can actually fix it. > > > > Even if we dropped the check now, option (2) is still useful, because > > you have no idea which version of git the other end will use to apply > > your patch. > > I am perfectly Ok with making the check looser in "am" when $rebasing is > in effect. Wouldn't that solve the issue? More or less. You would still have some lossiness when emailing your patch. Do we want to warn about that? -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 20:07 ` Jeff King @ 2011-01-14 22:30 ` Junio C Hamano 0 siblings, 0 replies; 30+ messages in thread From: Junio C Hamano @ 2011-01-14 22:30 UTC (permalink / raw) To: Jeff King; +Cc: Erik Faye-Lund, Linus Torvalds, Tor Arntsen, JT Olds, git Jeff King <peff@peff.net> writes: > More or less. You would still have some lossiness when emailing your > patch. Do we want to warn about that? Probably not. There will only be less than hundred people with a single letter name in the world (I was tempted to say 26 but decided to be generous ;-) like that, and you will much more likely to see an overly short "name" part from a misconfiguration or misparsing than from receiving a real patch from people with such a name. But I haven't thought the issues, possible improvements and pros-and-cons through. ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:21 ` Jeff King 2011-01-14 16:30 ` Erik Faye-Lund 2011-01-14 18:28 ` Junio C Hamano @ 2011-01-17 22:21 ` Jeff King 2011-01-17 22:29 ` Erik Faye-Lund ` (2 more replies) 2 siblings, 3 replies; 30+ messages in thread From: Jeff King @ 2011-01-17 22:21 UTC (permalink / raw) To: JT Olds; +Cc: Junio C Hamano, Erik Faye-Lund, Linus Torvalds, Tor Arntsen, git On Fri, Jan 14, 2011 at 11:21:45AM -0500, Jeff King wrote: > So we should probably do one or both of: > > 1. Make an --allow-any-name option to mailinfo, and use it when we > invoke mailinfo internally for rebasing. That still doesn't solve > the emailed patch problem, but at least keeps purely internal > operations sane. So I wrote up a nice tidy patch series with mailinfo changes and tests, and then am/rebase changes and tests on top of that. And guess what I noticed? My rebase tests didn't actually fail with stock git. I bisected to 43c2325 (am: use get_author_ident_from_commit instead of mailinfo when rebasing, 2010-06-16), which was written to handle exactly this sort of thing. That commit made it into v1.7.2. JT, which version of git are you running? Do you still see any problems with v1.7.2 and above? I can't replicate your issue with more recent versions. So unless we want to do any sort of commit-time warning, I don't think there is anything left to be done on this topic. -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-17 22:21 ` Jeff King @ 2011-01-17 22:29 ` Erik Faye-Lund 2011-01-18 3:55 ` JT Olds 2011-01-19 1:33 ` Jay Soffian 2 siblings, 0 replies; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-17 22:29 UTC (permalink / raw) To: Jeff King; +Cc: JT Olds, Junio C Hamano, Linus Torvalds, Tor Arntsen, git On Mon, Jan 17, 2011 at 11:21 PM, Jeff King <peff@peff.net> wrote: > On Fri, Jan 14, 2011 at 11:21:45AM -0500, Jeff King wrote: > >> So we should probably do one or both of: >> >> 1. Make an --allow-any-name option to mailinfo, and use it when we >> invoke mailinfo internally for rebasing. That still doesn't solve >> the emailed patch problem, but at least keeps purely internal >> operations sane. > > So I wrote up a nice tidy patch series with mailinfo changes and tests, > and then am/rebase changes and tests on top of that. And guess what I > noticed? My rebase tests didn't actually fail with stock git. > > I bisected to 43c2325 (am: use get_author_ident_from_commit instead of > mailinfo when rebasing, 2010-06-16), which was written to handle exactly > this sort of thing. > Heh, same story bro :( Just for reference, my patch can be found at http://repo.or.cz/w/git/kusma.git work/rebase-keep-name ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-17 22:21 ` Jeff King 2011-01-17 22:29 ` Erik Faye-Lund @ 2011-01-18 3:55 ` JT Olds 2011-01-19 1:33 ` Jay Soffian 2 siblings, 0 replies; 30+ messages in thread From: JT Olds @ 2011-01-18 3:55 UTC (permalink / raw) To: Jeff King Cc: Junio C Hamano, Erik Faye-Lund, Linus Torvalds, Tor Arntsen, git On Mon, Jan 17, 2011 at 3:21 PM, Jeff King <peff@peff.net> wrote: > On Fri, Jan 14, 2011 at 11:21:45AM -0500, Jeff King wrote: > >> So we should probably do one or both of: >> >> 1. Make an --allow-any-name option to mailinfo, and use it when we >> invoke mailinfo internally for rebasing. That still doesn't solve >> the emailed patch problem, but at least keeps purely internal >> operations sane. > > So I wrote up a nice tidy patch series with mailinfo changes and tests, > and then am/rebase changes and tests on top of that. And guess what I > noticed? My rebase tests didn't actually fail with stock git. > > I bisected to 43c2325 (am: use get_author_ident_from_commit instead of > mailinfo when rebasing, 2010-06-16), which was written to handle exactly > this sort of thing. > > That commit made it into v1.7.2. JT, which version of git are you > running? Do you still see any problems with v1.7.2 and above? I can't > replicate your issue with more recent versions. > > So unless we want to do any sort of commit-time warning, I don't think > there is anything left to be done on this topic. > > -Peff > Oh ho! No, I am running 1.7.1. I was so pleased to find out what the root of the problem was, though, that I did go and add my last name and haven't had any trouble since. Thanks for all your help everyone. -JT ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-17 22:21 ` Jeff King 2011-01-17 22:29 ` Erik Faye-Lund 2011-01-18 3:55 ` JT Olds @ 2011-01-19 1:33 ` Jay Soffian 2 siblings, 0 replies; 30+ messages in thread From: Jay Soffian @ 2011-01-19 1:33 UTC (permalink / raw) To: Jeff King Cc: JT Olds, Junio C Hamano, Erik Faye-Lund, Linus Torvalds, Tor Arntsen, git On Mon, Jan 17, 2011 at 5:21 PM, Jeff King <peff@peff.net> wrote: > I bisected to 43c2325 (am: use get_author_ident_from_commit instead of > mailinfo when rebasing, 2010-06-16), which was written to handle exactly > this sort of thing. Wow. Well, I apologize for not short-circuiting this thread much sooner, but believe it or not, I didn't even remember writing that till you just pointed it out. I'm too young to be losing my memory. :-( j. ^ permalink raw reply [flat|nested] 30+ messages in thread
[parent not found: <AANLkTimZF+r2aNzrXsUuHVZR65N5wpOYLutFgGAGoci_@m ail.gmail.com>]
* Re: Git Rebase blows away GIT_AUTHOR_NAME [not found] ` <AANLkTimZF+r2aNzrXsUuHVZR65N5wpOYLutFgGAGoci_@m ail.gmail.com> @ 2011-01-14 16:21 ` Tor Arntsen 2011-01-14 16:26 ` Erik Faye-Lund 2011-01-14 17:18 ` Linus Torvalds 0 siblings, 2 replies; 30+ messages in thread From: Tor Arntsen @ 2011-01-14 16:21 UTC (permalink / raw) To: kusmabite; +Cc: Linus Torvalds, JT Olds, Jeff King, git On 14/01/2011 17:13, Erik Faye-Lund wrote: > I think Tor pointed out that he knew a swede with his full legal name > to be only one letter long. I would suppose that meant that he didn't > have a surename? Exactly. He didn't. Bank printouts etc. would only have that single letter, he didn't use a nickname - that letter was his legal name. As for the rest of the world - I don't think the first name/last name combo (almost) everyone in the west use is necessarily a universal rule. -Tor ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:21 ` Tor Arntsen @ 2011-01-14 16:26 ` Erik Faye-Lund 2011-01-14 17:18 ` Linus Torvalds 1 sibling, 0 replies; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 16:26 UTC (permalink / raw) To: Tor Arntsen; +Cc: Linus Torvalds, JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 5:21 PM, Tor Arntsen <tor@spacetec.no> wrote: > On 14/01/2011 17:13, Erik Faye-Lund wrote: > >> I think Tor pointed out that he knew a swede with his full legal name >> to be only one letter long. I would suppose that meant that he didn't >> have a surename? > > Exactly. He didn't. Bank printouts etc. would only have that single > letter, he didn't use a nickname - that letter was his legal name. > Perhaps he could have spelled it out like he usually have to do: "The artist formerly known as Prince" ;) ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 16:21 ` Tor Arntsen 2011-01-14 16:26 ` Erik Faye-Lund @ 2011-01-14 17:18 ` Linus Torvalds 1 sibling, 0 replies; 30+ messages in thread From: Linus Torvalds @ 2011-01-14 17:18 UTC (permalink / raw) To: Tor Arntsen; +Cc: kusmabite, JT Olds, Jeff King, git On Fri, Jan 14, 2011 at 8:21 AM, Tor Arntsen <tor@spacetec.no> wrote: > On 14/01/2011 17:13, Erik Faye-Lund wrote: > >> I think Tor pointed out that he knew a swede with his full legal name >> to be only one letter long. I would suppose that meant that he didn't >> have a surename? > > Exactly. He didn't. Bank printouts etc. would only have that single > letter, he didn't use a nickname - that letter was his legal name. > > As for the rest of the world - I don't think the first name/last name combo > (almost) everyone in the west use is necessarily a universal rule. Quite frankly, I'd suggest that person then use "The letter 'G'" as his/her git name. git names aren't "legal names". They are for informational purposes. And a single letter just isn't informational. Linus ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-14 9:24 ` Tor Arntsen 2011-01-14 9:53 ` Erik Faye-Lund @ 2011-01-14 9:55 ` Erik Faye-Lund 1 sibling, 0 replies; 30+ messages in thread From: Erik Faye-Lund @ 2011-01-14 9:55 UTC (permalink / raw) To: Tor Arntsen; +Cc: JT Olds, Jeff King, git, torvalds (CC'ed Linus, as he wrote mailinfo's sanity-checking -- sorry, forgot to actually CC him the first time) On Fri, Jan 14, 2011 at 10:24 AM, Tor Arntsen <tor@spacetec.no> wrote: > On Fri, Jan 14, 2011 at 09:56, Erik Faye-Lund <kusmabite@gmail.com> wrote: >> On Fri, Jan 14, 2011 at 9:45 AM, Tor Arntsen <tor@spacetec.no> wrote: >>> I think I've mentioned this before in another thread, but first/last >>> name isn't universal, not even within countries where it's the common >>> form. When I was as student there was a fellow student from another >>> scandinavian country and his legal, full name consisted of a single >>> letter. >>> >> >> I'm curious, what Scandinavian country was this? Because as a >> Norwegian, I know a lot of people from all Scandinavian country, yet >> I've never heard of such names. In Norway, I the shortest legal name >> I've ever heard of was five characters. > > Sweden (I'm Norwegian too - this guy was a Swede studying in Norway). > Admittedly I have only that single example, and it was back in the > late seventies. His name was accepted as legal by Statens Lånekasse > (bank for students) and when the loans arrived his single-letter name > would be found at the very end of the long lists of wide listing-paper > printouts from the bank that was stiched up on the billboard wall > outside the administration offices. The loans arrived a couple of > times per year but we always had to go looking - the rest of us were > just amazed that we could really find that single letter down there > and he wasn't bs'ing the rest of us about his name. > > I'm not sure why there's a 3-letter limit on git author names.. but I > would suggest it should be set down to 1 letter minimum.. below that > would, I think, be overdoing it.. > Linus, you wrote sanity_check (from 2744b23). Do you remember if there were any specific reason for the minimum length of 3 of an author-name? It seems that in Sweden, legal names can be even a single letter (see Tor's comment)... ^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: Git Rebase blows away GIT_AUTHOR_NAME 2011-01-13 17:00 ` JT Olds 2011-01-13 17:11 ` JT Olds @ 2011-01-13 18:47 ` Jeff King 1 sibling, 0 replies; 30+ messages in thread From: Jeff King @ 2011-01-13 18:47 UTC (permalink / raw) To: JT Olds; +Cc: git On Thu, Jan 13, 2011 at 10:00:45AM -0700, JT Olds wrote: > I don't have git-sh-setup, which seems like it should be included in > the git-core package, but it's not. I have git-core > 1:1.7.1-1.1ubuntu0.1 installed. Obviously this precludes > get_author_ident_from_commit from working. Oops, sorry about that. It ships in the /usr/lib/git-core directory these days (it _used_ to ship in /usr/bin, so "." would find it automatically). And when I did my test, I was using the git repository itself, so of course it was in my current directory then. :) But it looks like you found it. > Author: jt@instructure.com > Email: jt@instructure.com > Subject: removing nondeterminism from test > Date: Tue, 11 Jan 2011 07:42:30 -0700 > > Should "Author" be my name? Could that be what's going on? I don't > even know where that gets set. The ones that I failed to notice that > they broke before I pushed them look like this: Yep, it should be your name. So my next to suspect would be the git-mailinfo parser, and indeed, that's the thing that has the 3-character limit that Erik mentioned. So that's definitely the problem. -Peff ^ permalink raw reply [flat|nested] 30+ messages in thread
end of thread, other threads:[~2011-01-19 1:34 UTC | newest] Thread overview: 30+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-01-12 16:15 Git Rebase blows away GIT_AUTHOR_NAME JT Olds 2011-01-12 18:21 ` Jeff King 2011-01-13 17:00 ` JT Olds 2011-01-13 17:11 ` JT Olds 2011-01-13 17:47 ` Erik Faye-Lund 2011-01-13 17:52 ` JT Olds 2011-01-13 18:20 ` Erik Faye-Lund 2011-01-14 8:45 ` Tor Arntsen 2011-01-14 8:56 ` Erik Faye-Lund 2011-01-14 9:24 ` Tor Arntsen 2011-01-14 9:53 ` Erik Faye-Lund 2011-01-14 14:51 ` JT Olds 2011-01-14 15:41 ` Linus Torvalds 2011-01-14 16:13 ` Erik Faye-Lund 2011-01-14 16:21 ` Jeff King 2011-01-14 16:30 ` Erik Faye-Lund 2011-01-14 16:33 ` Jeff King 2011-01-14 18:02 ` Jay Soffian 2011-01-14 18:28 ` Junio C Hamano 2011-01-14 20:07 ` Jeff King 2011-01-14 22:30 ` Junio C Hamano 2011-01-17 22:21 ` Jeff King 2011-01-17 22:29 ` Erik Faye-Lund 2011-01-18 3:55 ` JT Olds 2011-01-19 1:33 ` Jay Soffian [not found] ` <AANLkTimZF+r2aNzrXsUuHVZR65N5wpOYLutFgGAGoci_@m ail.gmail.com> 2011-01-14 16:21 ` Tor Arntsen 2011-01-14 16:26 ` Erik Faye-Lund 2011-01-14 17:18 ` Linus Torvalds 2011-01-14 9:55 ` Erik Faye-Lund 2011-01-13 18:47 ` Jeff King
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).