Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-31 Thread Tim Landscheidt
Junio C Hamano wrote: >> The pseudo ref certainly has an appeal. For people very familiar with >> Git's peculiarities such as FETCH_HEAD. Such as myself. >> For users, it is probably substantially worse an experience than having a >> cmdmode like --show-patch in the very

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-30 Thread Junio C Hamano
Johannes Schindelin writes: > The pseudo ref certainly has an appeal. For people very familiar with > Git's peculiarities such as FETCH_HEAD. Such as myself. > > For users, it is probably substantially worse an experience than having a > cmdmode like --show-patch in

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-30 Thread Johannes Schindelin
Hi Duy, On Tue, 30 Jan 2018, Duy Nguyen wrote: > On Mon, Jan 29, 2018 at 10:09 PM, Johannes Schindelin > wrote: > > Hi Duy, > > > > On Fri, 26 Jan 2018, Nguyễn Thái Ngọc Duy wrote: > > > >> When a conflict happens during a rebase, you often need to look at the > >>

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-30 Thread Duy Nguyen
On Mon, Jan 29, 2018 at 10:09 PM, Johannes Schindelin wrote: > Hi Duy, > > On Fri, 26 Jan 2018, Nguyễn Thái Ngọc Duy wrote: > >> When a conflict happens during a rebase, you often need to look at the >> original patch to see what the changes are. This requires opening

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-29 Thread Johannes Schindelin
Hi Duy, On Fri, 26 Jan 2018, Nguyễn Thái Ngọc Duy wrote: > When a conflict happens during a rebase, you often need to look at the > original patch to see what the changes are. This requires opening your > favourite pager with some random path inside $GIT_DIR. > > This series makes that

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-27 Thread Ævar Arnfjörð Bjarmason
On Fri, Jan 26 2018, Nguyễn Thái Ngọc Duy jotted: > When a conflict happens during a rebase, you often need to look at the > original patch to see what the changes are. This requires opening your > favourite pager with some random path inside $GIT_DIR. > > This series makes that experience a bit

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-26 Thread Duy Nguyen
On Sat, Jan 27, 2018 at 1:47 AM, Tim Landscheidt wrote: > Nguyễn Thái Ngọc Duy wrote: > >> When a conflict happens during a rebase, you often need to look at the >> original patch to see what the changes are. This requires opening your >> favourite

Re: [PATCH 0/2] Add "git rebase --show-patch"

2018-01-26 Thread Tim Landscheidt
Nguyễn Thái Ngọc Duy wrote: > When a conflict happens during a rebase, you often need to look at the > original patch to see what the changes are. This requires opening your > favourite pager with some random path inside $GIT_DIR. > This series makes that experience a bit

[PATCH 0/2] Add "git rebase --show-patch"

2018-01-26 Thread Nguyễn Thái Ngọc Duy
When a conflict happens during a rebase, you often need to look at the original patch to see what the changes are. This requires opening your favourite pager with some random path inside $GIT_DIR. This series makes that experience a bit better, by providing a command to read the patch. This is