Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to use a shell variable expansion inside of a git alias to strip a prefix of a branch. Unfortunately when I use the "standard" alias, variable expansion is not done:

publish = push -u origin ${$(git symbolic-ref HEAD)##refs/heads/}

This is trying to actually push a branch called "${$(git". But if I change the alias to:

publish = "!git push -u origin ${$(git symbolic-ref HEAD)##refs/heads/}"

it's run via sh and fails to do the substitution I want. Is there some workaround?

share|improve this question

2 Answers

up vote 1 down vote accepted

Try changing

!git push -u origin ${$(git symbolic-ref HEAD)##refs/heads/}

to

!git push -u origin `git symbolic-ref HEAD | sed -e "s#^refs/heads/##"`

This uses sh backticks to execute commands and sed to do the regular expression substitution.

share|improve this answer
@viraptor mmmm if that's the solution, I'd seriously consider just delegating to a bash script proper and not bother with any such archaics :) In a bash script, there will be no surprises and unlimited options. – sehe Nov 29 '11 at 21:59

Low-level explanation: The ${xxx} syntax always requires a variable name for xxx. It does not substitute an arbitrary string. To use ##, one would have to: x=$(git symbolic-ref HEAD); echo ${x##refs/heads/};

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.