Skip to content

Instantly share code, notes, and snippets.

View Ede123's full-sized avatar
🐘

Patrick Storz Ede123

🐘
View GitHub Profile
@3v1n0
3v1n0 / bzr-cherry-pick
Last active October 4, 2018 18:54
A tool for cherry-picking revisions from bazaar repositories
#!/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