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

Twice now in git, I've meant to branch from master, but instead branched from my current branch by accident. This means that my pull request from the second branch included all of the commits in the first branch, which haven't been merged yet.

Is there a way I can double check to confirm before branching from a non-master branch?

share|improve this question

5 Answers

up vote 7 down vote accepted

Why not supply a second parameter to git checkout -b:

$ git checkout -b newbranch master

The second parameter is where to branch from.

share|improve this answer
+1. Straightforward, uses existing mechanism, to the point. – fge Jan 8 '12 at 17:22

Assuming you're using a Unix-type shell, here's a simple function you could adapt:

function git() {
    if [ $# -eq 3 -a "$1" = "checkout" -a "$2" = "-b" ] ; then
        curbranch=$(git name-rev --name-only HEAD)
        if [ "$curbranch" != "master" ] ; then
          echo "You're on branch $curbranch."
          echo "Confirm new branch creation? [yn]"
          read a
          if [ "$a" != "y" ] ; then
              echo Aborted.
              return 1
          fi
      fi
    fi
    /usr/bin/git $@
}

Will only trigger on git checkout -b one_other_param.

Note: this will probably not work as expected if you're in a "detached head" state. The git name-rev won't give correct information I believe.

share|improve this answer
Nice. Of course, you could additionally modify this so that it only prompted if the current branch != master. – Avi Jan 8 '12 at 12:36

Add $(__git_ps1) to your command prompt (PS1 variable in your shell rc file) and you will always see what is your current branch.

share|improve this answer

if you run

git branch

you get something like this:

  branch1
  branch2
* master

And the star marks which branch on which you are currently located.

share|improve this answer
yes, I know - the thing is i just run git checkout -b without thinking about it. I'd like an automatic warning to flash when checking out from a branch. – Kevin Burke Jan 8 '12 at 9:46
ahh, sorry about that. – BananaNeil Jan 8 '12 at 12:33

You may write bash script, that you will use instead of git.

On creating new branch it will check is you in master. If no, it will stops(or ask you to continue), and if yes, it will execute real git

For example, you may name it gitcheckout

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.