Thread (3 messages) flat view 3 messages, 3 authors, 2016-06-15

Re: [PATCHv3 1/2] t5520-pull: Add testcases showing spurious conflicts from git pull --rebase

From: Elijah Newren <hidden>
Date: 2016-06-15 22:49:16

On Mon, Aug 9, 2010 at 1:09 PM, Junio C Hamano [off-list ref] wrote:
Elijah Newren [off-list ref] writes:
<snip>
quoted
+modify () {
+     sed -e "$1" < "$2" > "$2".x &&
+     mv "$2".x "$2"
+}
Just a style thing but I'd prefer to see the above written like this:

       modify () {
               sed -e "$1" <"$2" >"$2.x" &&
               mv "$2.x" "$2"
       }
I copied this function verbatim from t/t4127-apply-same-fn.sh.  Would
you like me to fix that one too?
quoted
+test_expect_success 'setup for avoiding reapplying old patches' '
+     (cd dst &&
+      git rebase --abort;
This may be hypothetical but this discards error condition from failing to
ch into dst (for whatever reason).  Don't we expect "git rebase --abort"
to exit with a non-zero status?  Same comment for the last one in the
patch below.
Yes, Hannes pointed out the same issue.  Does the follow-up interdiff
I posted in response to my patch address this in a way you'd like?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help