This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Simply cherry picks a revision from a bazaar branch, cloning its metadata | |
# | |
# Usage: | |
# bzr-cherry-pick lp:unity 1234 | |
if ! (bzr root &> /dev/null); then | |
echo "It seems you're not in a bazaar branch directory" | |
exit 1 |