Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-12 Thread Junio C Hamano
小川恭史 writes: > As you point, > > git stash > > without any argument is equivalent to both of > > git stash save > git stash push > > . The original sentence is correct. OK. Note that I was merely reacting to "Correct it." in your justification for the change, which made it sound l

Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread 小川恭史
As you point, git stash without any argument is equivalent to both of git stash save git stash push . The original sentence is correct.

Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread 小川恭史
As you point, git stash without any argument is equivalent to both of git stash save git stash push . The original sentence is correct. 2017-10-12 12:31 GMT+09:00 小川恭史 : > As you point, > > git stash > > without any argument is equivalent to both of > git stash save and > > > 2

Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Junio C Hamano
Takahito Ogawa writes: > @@ -33,7 +33,7 @@ and reverts the working directory to match the `HEAD` > commit. > The modifications stashed away by this command can be listed with > `git stash list`, inspected with `git stash show`, and restored > (potentially on top of a different commit) with `g

[PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Takahito Ogawa
"git stash" behavior without any arguments was changed in 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). This is equivalent to "git stash push" but documents says "git stash save". Correct it. Reviewed-by: Thomas Gummerer Signed-off-by

Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Thomas Gummerer
On 10/11, Thomas Gummerer wrote: > On 10/12, Takahito Ogawa wrote: > > "git stash" behavior without any arguments was changed in > > 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). > > This is equivalent to "git stas

Re: [PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Thomas Gummerer
On 10/12, Takahito Ogawa wrote: > "git stash" behavior without any arguments was changed in > 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). > This is equivalent to "git stash push" but documents says > "git stash save". >

[PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Takahito Ogawa
"git stash" behavior without any arguments was changed in 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). This is equivalent to "git stash push" but documents says "git stash save". Correct it. Signed-off-by: Takahito Ogawa --- Do

[PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Takahito Ogawa
"git stash" behavior without any arguments was changed in 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). This is equivalent to "git stash push" but document says "git stash save". Correct it. Signed-off-by: Takahito Ogawa --- Do

[PATCH 1/1] git-stash.txt: correct "git stash" behavior with no arguments

2017-10-11 Thread Takahito Ogawa
"git stash" behavior without any arguments was changed in 1ada5020b ("stash: use stash_push for no verb form", 2017-02-28). This is equivalent to "git stash push" but document says "git stash save". Correct it. Signed-off-by: Takahito Ogawa --- Do

Re: Git stash behavior

2015-08-17 Thread Ed Avis
You may want to see this recent thread about a similar feature: -- Ed Avis -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger

Git stash behavior

2015-08-12 Thread sivno . 20 . toranaga-san
Hello all, I am using git stashes to ensure that my source builds and tests correctly. My general work flow is this: Before committing I create a stash and clean everything: git stash save -q --keep-index --include-untracked Then I perform some tests (mvn compile test), after that I restore