Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Unified Diff: update_libvpx.sh

Issue 560483002: Print git log in commit order (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: update_libvpx.sh
===================================================================
--- update_libvpx.sh (revision 291879)
+++ update_libvpx.sh (working copy)
@@ -73,10 +73,10 @@
# Output log for upstream from current hash.
if [ -n "$prev_hash" ]; then
echo "git log from upstream:"
- pretty_git_log="$(git log --no-merges --pretty="%h %s" $prev_hash..$hash)"
+ pretty_git_log="$(git log --no-merges --topo-order --pretty="%h %s" $prev_hash..$hash)"
Tom Finegan 2014/09/09 20:09:10 This should be wrapped.
if [ -z "$pretty_git_log" ]; then
echo "No log found. Checking for reverts."
- pretty_git_log="$(git log --no-merges --pretty="%h %s" $hash..$prev_hash)"
+ pretty_git_log="$(git log --no-merges --topo-order --pretty="%h %s" $hash..$prev_hash)"
fi
Tom Finegan 2014/09/09 20:09:10 here too
echo "$pretty_git_log"
fi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698