pre-rebase.noexec
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:4k
源码类别:

Audio

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2006 Junio C Hamano
  4. #
  5. publish=next
  6. basebranch="$1"
  7. if test "$#" = 2
  8. then
  9. topic="refs/heads/$2"
  10. else
  11. topic=`git symbolic-ref HEAD`
  12. fi
  13. case "$basebranch,$topic" in
  14. master,refs/heads/??/*)
  15. ;;
  16. *)
  17. exit 0 ;# we do not interrupt others.
  18. ;;
  19. esac
  20. # Now we are dealing with a topic branch being rebased
  21. # on top of master.  Is it OK to rebase it?
  22. # Is topic fully merged to master?
  23. not_in_master=`git-rev-list --pretty=oneline ^master "$topic"`
  24. if test -z "$not_in_master"
  25. then
  26. echo >&2 "$topic is fully merged to master; better remove it."
  27. exit 1 ;# we could allow it, but there is no point.
  28. fi
  29. # Is topic ever merged to next?  If so you should not be rebasing it.
  30. only_next_1=`git-rev-list ^master "^$topic" ${publish} | sort`
  31. only_next_2=`git-rev-list ^master           ${publish} | sort`
  32. if test "$only_next_1" = "$only_next_2"
  33. then
  34. not_in_topic=`git-rev-list "^$topic" master`
  35. if test -z "$not_in_topic"
  36. then
  37. echo >&2 "$topic is already up-to-date with master"
  38. exit 1 ;# we could allow it, but there is no point.
  39. else
  40. exit 0
  41. fi
  42. else
  43. not_in_next=`git-rev-list --pretty=oneline ^${publish} "$topic"`
  44. perl -e '
  45. my $topic = $ARGV[0];
  46. my $msg = "* $topic has commits already merged to public branch:n";
  47. my (%not_in_next) = map {
  48. /^([0-9a-f]+) /;
  49. ($1 => 1);
  50. } split(/n/, $ARGV[1]);
  51. for my $elem (map {
  52. /^([0-9a-f]+) (.*)$/;
  53. [$1 => $2];
  54. } split(/n/, $ARGV[2])) {
  55. if (!exists $not_in_next{$elem->[0]}) {
  56. if ($msg) {
  57. print STDERR $msg;
  58. undef $msg;
  59. }
  60. print STDERR " $elem->[1]n";
  61. }
  62. }
  63. ' "$topic" "$not_in_next" "$not_in_master"
  64. exit 1
  65. fi
  66. exit 0
  67. ################################################################
  68. This sample hook safeguards topic branches that have been
  69. published from being rewound.
  70. The workflow assumed here is:
  71.  * Once a topic branch forks from "master", "master" is never
  72.    merged into it again (either directly or indirectly).
  73.  * Once a topic branch is fully cooked and merged into "master",
  74.    it is deleted.  If you need to build on top of it to correct
  75.    earlier mistakes, a new topic branch is created by forking at
  76.    the tip of the "master".  This is not strictly necessary, but
  77.    it makes it easier to keep your history simple.
  78.  * Whenever you need to test or publish your changes to topic
  79.    branches, merge them into "next" branch.
  80. The script, being an example, hardcodes the publish branch name
  81. to be "next", but it is trivial to make it configurable via
  82. $GIT_DIR/config mechanism.
  83. With this workflow, you would want to know:
  84. (1) ... if a topic branch has ever been merged to "next".  Young
  85.     topic branches can have stupid mistakes you would rather
  86.     clean up before publishing, and things that have not been
  87.     merged into other branches can be easily rebased without
  88.     affecting other people.  But once it is published, you would
  89.     not want to rewind it.
  90. (2) ... if a topic branch has been fully merged to "master".
  91.     Then you can delete it.  More importantly, you should not
  92.     build on top of it -- other people may already want to
  93.     change things related to the topic as patches against your
  94.     "master", so if you need further changes, it is better to
  95.     fork the topic (perhaps with the same name) afresh from the
  96.     tip of "master".
  97. Let's look at this example:
  98.    o---o---o---o---o---o---o---o---o---o "next"
  99.   /       /           /           /
  100.  /   a---a---b A     /           /
  101. /   /               /           /
  102.        /   /   c---c---c---c B         /
  103.       /   /   /                      /
  104.      /   /   /   b---b C            /
  105.     /   /   /   /                  /
  106.     ---o---o---o---o---o---o---o---o---o---o---o "master"
  107. A, B and C are topic branches.
  108.  * A has one fix since it was merged up to "next".
  109.  * B has finished.  It has been fully merged up to "master" and "next",
  110.    and is ready to be deleted.
  111.  * C has not merged to "next" at all.
  112. We would want to allow C to be rebased, refuse A, and encourage
  113. B to be deleted.
  114. To compute (1):
  115. git-rev-list ^master ^topic next
  116. git-rev-list ^master        next
  117. if these match, topic has not merged in next at all.
  118. To compute (2):
  119. git-rev-list master..topic
  120. if this is empty, it is fully merged to "master".