•  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
r3 vs r4
......
585585
})
586586
}}}
587587
588
pkgs 원본 소스를 까봤는데 perlSupport 설정이 정신나갈 거 같다. 일단 그냥 symlink 강제로 박아서 해결할 듯.
588
pkgs 원본 소스를 까봤는데 perlSupport 설정이 정신나갈 거 같다. 일단 그냥 symlink 강제로 박아서 해결할 듯. 일단 실행은 된다.
589589
590
{{{#!syntax sh
591
not ok 42 - aborted --continue does not squash commits after "edit"
592
#
593
# old=$(git rev-parse HEAD) &&
594
# test_tick &&
595
# (
596
# set_fake_editor &&
597
# FAKE_LINES="edit 1" git rebase -i HEAD^ &&
598
# echo "edited again" > file7 &&
599
# git add file7 &&
600
# test_must_fail env FAKE_COMMIT_MESSAGE=" " git rebase --continue
601
# ) &&
602
# test $old = $(git rev-parse HEAD) &&
603
# git rebase --abort
604
#
605
not ok 43 - auto-amend only edited commits after "edit"
606
#
607
# test_tick &&
608
# (
609
# set_fake_editor &&
610
# FAKE_LINES="edit 1" git rebase -i HEAD^ &&
611
# echo "edited again" > file7 &&
612
# git add file7 &&
613
# FAKE_COMMIT_MESSAGE="edited file7 again" git commit &&
614
# echo "and again" > file7 &&
615
# git add file7 &&
616
# test_tick &&
617
# test_must_fail env FAKE_COMMIT_MESSAGE="and again" \
618
# git rebase --continue
619
# ) &&
620
# git rebase --abort
621
#
622
not ok 44 - clean error after failed "exec"
623
#
624
# test_tick &&
625
# test_when_finished "git rebase --abort || :" &&
626
# (
627
# set_fake_editor &&
628
# test_must_fail env FAKE_LINES="1 exec_false" git rebase -i HEAD^
629
# ) &&
630
# echo "edited again" > file7 &&
631
# git add file7 &&
632
# test_must_fail git rebase --continue 2>error &&
633
# test_grep "you have staged changes in your working tree" error &&
634
# test_grep ! "could not open.*for reading" error
635
#
636
}}}
637
590638
{{{#!syntax cpp
591639
struct delta_index {
592640
unsigned long memsize;
......