Re: [RESOLVED NOTABUG] "git commit --date" format parsing

2015-05-23 Thread Bastien Traverse
Le 23/05/2015 00:06, Jeff King a écrit : > OK, this is weird. When I tried to reproduce, I couldn't. But I had > typed in the date string myself while reading your email in another > window. And though I was sure that I had typed it correctly, just to be > double-plus-sure I copied and pasted your

Re: [BUG] "git commit --date" format parsing

2015-05-22 Thread Jeff King
On Fri, May 22, 2015 at 03:18:53PM +0200, Bastien Traverse wrote: > $ git --version > git version 2.4.1 > > $ uname -a > Linux arch-clevo 4.0.4-1-ARCH #1 SMP PREEMPT Mon May 18 06:43:19 CEST > 2015 x86_64 GNU/Linux > > $ mkdir test && cd test/ > $ git init > $ touch test > $ git add test > > 1.

[BUG] "git commit --date" format parsing

2015-05-22 Thread Bastien Traverse
Hi * Trying to specify a commit (author) date using `--date` option yields unpredictable results that are incoherent with man git-commit: $ git --version git version 2.4.1 $ uname -a Linux arch-clevo 4.0.4-1-ARCH #1 SMP PREEMPT Mon May 18 06:43:19 CEST 2015 x86_64 GNU/Linux $ mkdir test && cd t

Re: git commit --date format

2015-04-14 Thread Junio C Hamano
乙酸鋰 writes: > Hi, > > In git < 2.0, git commit --amend --date="" can amend commit with > current time as author time. > But since git 2.0, this does not work, dying with "invalid date format". > I have to instead type git commit --amend --date="now". > Is empty string date format no longer suppor

git commit --date format

2015-04-13 Thread 乙酸鋰
Hi, In git < 2.0, git commit --amend --date="" can amend commit with current time as author time. But since git 2.0, this does not work, dying with "invalid date format". I have to instead type git commit --amend --date="now". Is empty string date format no longer supported? Or will be fixed? -- T