Skip to content

Commit

Permalink
COOKBOOK: Adding recipie for checking only for the uniq commits on ma…
Browse files Browse the repository at this point in the history
…ster.

This could probably be rolled into a script, but for now.
  • Loading branch information
sruffell committed Apr 5, 2011
1 parent aa47689 commit 5dfae5d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions COOKBOOK
Expand Up @@ -28,3 +28,9 @@ Adding acks onto a branch (from the git filter-branch man page):
3. git filter-branch -f --msg-filter 'cat && echo "Acked-by: (copy name/email from acked by line here)"' master..acked
4. (check the acked branch to make sure it looks good)
5. git checkout for-trunk; git reset --hard acked; git branch -d acked (Don't need to keep the acked branch around anymore)


Looking at the commits that are only on the master branch and not in the 2.4 release:

git log --oneline v2.4.0..master | sed -e 's/\w* //' > file.txt && git log --oneline v2.4.0..2.4 | sed -e 's/\w* //' >> file.txt && cat file.txt | sort | uniq -u | tee uniq.txt

0 comments on commit 5dfae5d

Please sign in to comment.