about summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-09 14:23:29 +0100
committerhut <hut@lavabit.com>2010-02-09 14:29:02 +0100
commit26dce0988cb3e5b0425f05e407fb504e1aa0f0e1 (patch)
treeb8fc6351c47525291cbe3ca5e46567a4bb9e9613 /doc
parentaad614556f7f9ed40d9fe60fac0fb382eeeb85fb (diff)
downloadranger-26dce0988cb3e5b0425f05e407fb504e1aa0f0e1.tar.gz
doc/pick.sh: corrected commit order
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/pick.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/pick.sh b/doc/pick.sh
index 348ae6f3..e5f18da4 100755
--- a/doc/pick.sh
+++ b/doc/pick.sh
@@ -18,7 +18,7 @@ while read -r hash tag rest; do
 	if [ $tag != 'custom:' ]; then
 		git cherry-pick $hash || exit 1
 	fi
-done < <(git log --oneline --no-color $MASTER_BRANCH..$CUSTOM_BRANCH)
+done < <(git log --oneline --no-color $MASTER_BRANCH..$CUSTOM_BRANCH | tac)
 
 git checkout -m $CUSTOM_BRANCH
 git rebase $MASTER_BRANCH