Is it possible to merge a git branch into another from one line.
Let's suppose i want to merge br1 into master branch.
I should do this:
git checkout master
git merge br1
Is there a way to type something like this:
git merge br1 master
I mean type a command which will works fine whatever the current branch is
Thanks