On 2010-03-18 01:10, Stephen Boyd wrote: > Getting the shortened branch name is as easy as using the shell's > parameter expansion. > > curr_branch=$(git symbolic-ref -q HEAD) > -curr_branch_short=$(echo "$curr_branch" | sed "s|refs/heads/||") > +curr_branch_short="${curr_branch#refs/heads/}" This modification is a bashism. This syntax is not compatible with other shells. -- Gabriel Filion -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html