2 # TopGit - A different patch queue manager
3 # Copyright (C) Petr Baudis <pasky@suse.cz> 2008
4 # Copyright (C) Kyle J. McKay <mackyle@gmail.com> 2015
8 deps
= # List of dependent branches
9 restarted
= # Set to 1 if we are picking up in the middle of base setup
10 merge
= # List of branches to be merged; subset of $deps
12 rname
= # Remote branch to base this one on
29 USAGE
="Usage: ${tgname:-tg} [... -r remote] create [-q] [-m <msg> | -F <file>] [--topmsg <msg> | --topmsg-file <file>] [-n] [--no-commit] [--no-deps] [<name> [<dep>...|-r [<rname>]] ]"
33 if [ "${1:-0}" != 0 ]; then
34 printf '%s\n' "$USAGE" >&2
36 printf '%s\n' "$USAGE"
43 [ -d "$git_dir/tg-create" ] ||
return 1
44 [ -s "$git_dir/tg-create/name" ] ||
return 1
45 [ -s "$git_dir/tg-create/deps" ] ||
return 1
46 [ -s "$git_dir/tg-create/merge" ] ||
return 1
47 [ -s "$git_dir/tg-create/msg" ] ||
return 1
48 [ -s "$git_dir/tg-create/topmsg" ] ||
return 1
49 [ -f "$git_dir/tg-create/nocommit" ] ||
return 1
50 [ -f "$git_dir/tg-create/noedit" ] ||
return 1
51 [ -f "$git_dir/tg-create/warntop" ] ||
return 1
52 [ -f "$git_dir/tg-create/quiet" ] ||
return 1
58 [ -n "$quiet" ] || info
"$@"
63 while [ $# -gt 0 ]; do case "$1" in
88 -m|
--message|
--message=*)
89 case "$1" in --message=*)
92 set -- --message "${x#--message=}" "$@"
95 echo "The $1 option requires an argument" >&2
101 --tm|
--tm=*|
--topmsg|
--topmsg=*)
106 set -- --tm "${x#--tm=}" "$@";;
110 set -- --topmsg "${x#--topmsg=}" "$@";;
112 if [ $# -lt 2 ]; then
113 echo "The $1 option requires an argument" >&2
120 case "$1" in --file=*)
123 set -- --file "${x#--file=}" "$@"
125 if [ $# -lt 2 ]; then
126 echo "The $1 option requires an argument" >&2
132 --tF|
--tF=*|
--topmsg-file|
--topmsg-file=*)
137 set -- --tF "${x#--tF=}" "$@";;
141 set -- --topmsg-file "${x#--topmsg-file=}" "$@";;
143 if [ $# -lt 2 ]; then
144 echo "The $1 option requires an argument" >&2
152 rname
="$2"; [ $# -eq 0 ] ||
shift
159 echo "Unknown option: $1" >&2
166 [ $# -gt 0 -o -z "$rname" ] ||
set -- "$rname"
167 [ $# -gt 0 -o -n "$remote$msg$msgfile$topmsg$topmsgfile$nocommit$nodeps" ] ||
continue=1
168 [ -z "$continue" -o "$#$remote$msg$msgfile$topmsg$topmsgfile$nocommit$nodeps" = "0" ] || usage
1
169 if [ -z "$continue" -a $# -gt 0 ]; then
172 if [ -z "$remote" -a "$1" = "-r" ]; then
176 [ $# -eq 0 ] ||
shift
179 [ -n "$continue" -o -n "$name" ] ||
{ err
"no branch name given"; usage
1; }
180 [ -z "$remote" -o -n "$rname" ] || rname
="$name"
181 [ -z "$remote" -o -z "$msg$msgfile$topmsg$topmsgfile$nocommit$nodeps" ] ||
{ err
"-r may not be combined with other options"; usage
1; }
182 [ $# -eq 0 -o -z "$remote" ] ||
{ err
"deps not allowed with -r"; usage
1; }
183 [ $# -le 1 -o -z "$nodeps" ] ||
{ err
"--no-deps allows at most one <dep>"; usage
1; }
184 [ -z "$msg" -o -z "$msgfile" ] || die
"only one -F or -m option is allowed"
185 [ -z "$continue" ] || is_active || die
"no tg create is currently active"
186 [ "$msgfile" != "-" -o "$topmsgfile" != "-" ] ||
{ err
"--message-file and --topmsg-file may not both be '-'"; usage
1; }
188 ## Fast-track creating branches based on remote ones
190 if [ -n "$rname" ]; then
191 [ -n "$name" ] || die
"no branch name given"
192 ! ref_exists
"refs/heads/$name" || die
"branch '$name' already exists"
193 ! ref_exists
"refs/$topbases/$name" || die
"'$topbases/$name' already exists"
194 if [ -z "$base_remote" ]; then
195 die
"no remote location given. Either use -r remote argument or set topgit.remote"
197 has_remote
"$rname" || die
"no branch $rname in remote $base_remote"
198 init_reflog
"refs/$topases/$name"
199 msg
="tgcreate: $name -r $rname"
200 tbrv
="$(ref_exists_rev "refs
/remotes
/$base_remote/${topbases#heads/}/$rname")" ||
201 tbrv
="$(ref_exists_rev "refs
/remotes
/$base_remote/${oldbases#heads/}/$rname")" ||
202 die
"no branch $rname in remote $base_remote"
203 git update-ref
-m "$msg" "refs/$topbases/$name" "$tbrv" ""
204 git update-ref
-m "$msg" "refs/heads/$name" "refs/remotes/$base_remote/$rname" ""
205 quiet_info
"Topic branch $name based on $base_remote : $rname set up."
209 ## Auto-guess dependencies
212 if [ -z "$deps" ]; then
213 if [ -z "$name" ] && is_active
; then
214 # We are setting up the base branch now; resume merge!
215 name
="$(cat "$git_dir/tg-create
/name
")"
216 deps
="$(cat "$git_dir/tg-create
/deps
")"
217 merge
="$(cat "$git_dir/tg-create
/merge
")"
218 msg
="$(cat "$git_dir/tg-create
/msg
")"
219 topmsg
="$(cat "$git_dir/tg-create
/topmsg
")"
220 nocommit
="$(cat "$git_dir/tg-create
/nocommit
")"
221 noedit
="$(cat "$git_dir/tg-create
/noedit
")"
222 warntop
="$(cat "$git_dir/tg-create
/warntop
")"
223 quiet
="$(cat "$git_dir/tg-create
/quiet
")"
225 quiet_info
"Resuming $name setup..."
228 [ -z "$name" ] && die
"no branch name given"
229 if [ -n "$nodeps" ]; then
232 head="$(git symbolic-ref --quiet HEAD)" ||
:
233 [ -z "$head" ] || git rev-parse
--verify --quiet "$head" -- ||
234 die
"refusing to auto-depend on unborn branch (use --no-deps)"
235 deps
="${head#refs/heads/}"
236 [ "$deps" != "$head" ] || die
"refusing to auto-depend on non-branch ref (${head:-detached HEAD})"
237 quiet_info
"automatically marking dependency on $deps"
243 if [ -n "$nodeps" ]; then
244 # there can be only one dep and it need only be a committish
245 # however, if it's HEAD and HEAD is an unborn branch that's okay too
246 if [ "$deps" = "HEAD" ] && unborn
="$(git symbolic-ref --quiet HEAD --)" && ! git rev-parse
--verify --quiet HEAD
-- >/dev
/null
; then
251 git rev-parse
--quiet --verify "$deps^0" -- >/dev
/null ||
252 die
"unknown committish \"$deps\""
256 # Non-remote branch set up requires a clean tree unless the single dep is the same tree as HEAD
257 [ -n "$restarted" ] ||
[ "$deps" = "HEAD" ] ||
{
259 [ -z "$nodeps" ] || prefix
=
260 [ $# -eq 1 -a "$(git rev-parse --quiet --verify "$prefix$deps^
{tree
}" --)" = "$(git rev-parse --quiet --verify HEAD^{tree} --)" ] ||
261 (ensure_clean_tree
) ||
{
262 [ $# -ne 1 ] || info
"use \`git checkout $deps\` first and then try again"
267 [ -n "$merge" -o -n "$restarted" ] || merge
="$deps "
269 if [ -z "$nodeps" ]; then
272 while read d
&& [ -n "$d" ]; do
273 if [ "$d" = "HEAD" ]; then
274 sr
="$(git symbolic-ref --quiet HEAD)" ||
:
275 [ -z "$sr" ] || git rev-parse
--verify --quiet "$sr" -- ||
276 die
"refusing to depend on unborn branch (use --no-deps)"
277 [ -n "$sr" ] || die
"cannot depend on a detached HEAD"
278 case "$sr" in refs
/heads
/*);;*)
279 die
"HEAD is a symref to other than refs/heads/..."
281 d
="${sr#refs/heads/}"
283 ref_exists
"refs/heads/$d" || die
"unknown branch dependency '$d'"
287 warn
"ignoring duplicate depedency $d"
290 deps
="${deps:+$deps }$d"
294 $(sed 'y/ /\n/' <<-LIST
301 if test="$(git symbolic-ref --quiet "$name" --)"; then case "$test" in
303 name
="${test#refs/$topbases/}"
306 name
="${test#refs/heads/}"
309 ! ref_exists
"refs/heads/$name" ||
310 die
"branch '$name' already exists"
311 ! ref_exists
"refs/$topbases/$name" ||
312 die
"'$topbases/$name' already exists"
313 [ -n "$force" ] ||
! ref_exists
"refs/tags/$name" ||
314 die
"refusing to create branch with same name as existing tag '$name' without --force"
316 # Clean up any stale stuff
317 rm -rf "$git_dir/tg-create"
319 # Barf now rather than later if missing ident
320 ensure_ident_available
324 tab
="$(printf '\t.')" && tab
="${tab%?}"
328 grep -i "^Subject[ $tab]*:" |
329 sed -n "s/^[^: $tab][^: $tab]*[ $tab]*:[ $tab]*//; s/[ $tab][ $tab]*\$//; 1p" ||
333 if [ -z "$restarted" ]; then
334 >"$git_dir/TG_EDITMSG"
335 if [ -n "$msgfile" ]; then
336 if [ "$msgfile" = "-" ]; then
337 git stripspace
>"$git_dir/TG_EDITMSG"
339 git stripspace
<"$msgfile" >"$git_dir/TG_EDITMSG"
341 elif [ -n "$msg" ]; then
342 printf '%s\n' "$msg" | git stripspace
>"$git_dir/TG_EDITMSG"
344 if [ ! -s "$git_dir/TG_EDITMSG" ]; then
345 printf '%s\n' "tg create $name" | git stripspace
>"$git_dir/TG_EDITMSG"
347 msg
="$(cat "$git_dir/TG_EDITMSG
")"
348 rm -f "$git_dir/TG_EDITMSG"
350 >"$git_dir/TG_EDITMSG"
351 if [ -n "$topmsgfile" ]; then
352 if [ "$topmsgfile" = "-" ]; then
353 git stripspace
>"$git_dir/TG_EDITMSG"
355 git stripspace
<"$topmsgfile" >"$git_dir/TG_EDITMSG"
357 elif [ -n "$topmsg" ]; then
358 printf '%s\n' "$topmsg" | git stripspace
>"$git_dir/TG_EDITMSG"
360 if [ -s "$git_dir/TG_EDITMSG" ]; then
363 author
="$(git var GIT_AUTHOR_IDENT)"
364 author_addr
="${author%> *}>"
366 echo "From: $author_addr"
367 ! header
="$(git config topgit.to)" ||
echo "To: $header"
368 ! header
="$(git config topgit.cc)" ||
echo "Cc: $header"
369 ! header
="$(git config topgit.bcc)" ||
echo "Bcc: $header"
370 ! subject_prefix
="$(git config topgit.subjectprefix)" || subject_prefix
="$subject_prefix "
371 echo "Subject: [${subject_prefix}$branchtype] $name"
373 echo "<$branchdesc description>"
375 echo "Signed-off-by: $author_addr"
376 [ "$(git config --bool format.signoff)" = true
] && echo "Signed-off-by: $author_addr"
377 } | git stripspace
>"$git_dir/TG_EDITMSG"
379 if [ -z "$noedit" ]; then
380 cat <<EOT >>"$git_dir/TG_EDITMSG"
382 # Please enter the patch message for the new TopGit branch $name.
383 # It will be stored in the .topmsg file and used to create the
384 # patch header when \`tg patch\` is run on branch $name.
385 # The "Subject:" line will appear in \`tg summary\` and \`tg info\` output.
387 # Lines starting with '#' will be ignored, and an empty patch
388 # message aborts the \`tg create\` operation entirely.
390 # tg create ${nodeps:+--no-deps }$name $deps
392 run_editor
"$git_dir/TG_EDITMSG" ||
393 die
"there was a problem with the editor '$tg_editor'"
394 git stripspace
-s <"$git_dir/TG_EDITMSG" >"$git_dir/TG_EDITMSG"+
395 mv -f "$git_dir/TG_EDITMSG"+ "$git_dir/TG_EDITMSG"
396 [ -s "$git_dir/TG_EDITMSG" ] || die
"nothing to do"
398 subj
="$(get_subject <"$git_dir/TG_EDITMSG
")"
399 if [ -z "$subj" ]; then
400 subj
="$(sed -n "s
/^
[ $tab][ $tab]*//; 1p
" <"$git_dir/TG_EDITMSG
")";
401 case "$subj" in "["*);;*) subj
="[$branchtype] $subj"; esac
402 printf '%s\n' "Subject: $subj" "" >"$git_dir/TG_EDITMSG"+
403 sed -n '2,$p' <"$git_dir/TG_EDITMSG" | git stripspace
>>"$git_dir/TG_EDITMSG"+
404 mv -f "$git_dir/TG_EDITMSG"+ "$git_dir/TG_EDITMSG"
407 topmsg
="$(cat "$git_dir/TG_EDITMSG
")"
408 rm -f "$git_dir/TG_EDITMSG"
412 ## Find starting commit to create the base
414 if [ -n "$merge" -a -z "$restarted" ]; then
415 # Unshift the first item from the to-merge list
416 branch
="${merge%% *}"
418 # We create a detached head so that we can abort this operation
420 [ -z "$nodeps" ] || prefix
=
421 if [ -n "$unborn" ]; then
422 quiet_info
"creating $name base with empty tree..."
424 quiet_info
"creating $name base from $branch..."
425 git checkout
-q "$(git rev-parse --verify "$prefix$branch^
0" --)"
430 ## Set up the topic branch
432 init_reflog
"refs/$topbases/$name"
433 if [ -n "$unborn" ]; then
434 mttree
="$(git mktree </dev/null)"
435 emsg
="tg create empty $topbases/$name"
436 [ "refs/heads/$name" = "$unborn" ] || emsg
="Initial empty commit"
437 mtcommit
="$(git commit-tree -m "$emsg" "$mttree")" || die
"git commit-tree failed"
438 git update-ref
-m "tgcreate: create ${unborn#refs/heads/}" "HEAD" "$mtcommit" ""
439 [ "refs/heads/$name" = "$unborn" ] || warn
"branch ${unborn#refs/heads/} created with empty commit"
440 git update-ref
-m "tgcreate: set $topbases/$name" "refs/$topbases/$name" "HEAD" ""
441 [ "refs/heads/$name" = "$unborn" ] || git checkout
-b "$name"
443 git update-ref
-m "tgcreate: set $topbases/$name" "refs/$topbases/$name" "HEAD" ""
444 git checkout
-b "$name"
447 if [ -n "$nodeps" ] ||
[ -z "$deps" ]; then
448 >"$root_dir/.topdeps"
450 sed 'y/ /\n/' <<-EOT >"$root_dir/.topdeps"
454 git add
-f "$root_dir/.topdeps"
455 printf '%s\n' "$topmsg" >"$root_dir/.topmsg"
456 git add
-f "$root_dir/.topmsg"
457 printf '%s\n' "$msg" >"$git_dir/MERGE_MSG"
459 [ -z "$warntop" ] || warn
".topmsg content was reformatted into patch header"
460 if [ -n "$nocommit" ]; then
461 quiet_info
"Topic branch $name set up."
462 if [ -n "$noedit" ]; then
463 quiet_info
"Please fill in .topmsg now and make the initial commit."
465 quiet_info
"Please make the initial commit."
467 quiet_info
"Remember to run $tgdisplay update afterwards."
468 quiet_info
"To abort:"
469 quiet_info
" git$gitcdopt rm -f .top* && git$gitcdopt checkout ${deps%% *} && $tgdisplay delete $name"
473 git commit
-m "$msg" "$root_dir/.topdeps" "$root_dir/.topmsg" || die
"git commit failed"
474 subj
="$(get_subject <"$root_dir/.topmsg
" |
475 sed "s
/^
[^
]]*]//; s
/^
[ $tab][ $tab]*//; s
/[ $tab][ $tab]*\$
//")"
476 if [ -n "$subj" ]; then
477 printf '%s\n' "$subj" ""
478 sed -e '1,/^$/d' <"$root_dir/.topmsg"
480 cat "$root_dir/.topmsg"
481 fi >"$git_dir/MERGE_MSG"
482 quiet_info
"Topic branch $name created."
483 [ -n "$merge" ] ||
exit 0
484 ## Merge other dependencies into the base
485 quiet_info
"Running $tgname update to merge in dependencies."
487 .
"$TG_INST_CMDDIR"/tg-update