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

Unified Diff: man/src/git-hyper-blame.demo.common.sh

Issue 1559943003: Added git hyper-blame, a tool that skips unwanted commits in git blame. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Respond to review. Created 4 years, 11 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 | « man/src/git-hyper-blame.demo.2.sh ('k') | tests/git_common_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: man/src/git-hyper-blame.demo.common.sh
diff --git a/man/src/git-hyper-blame.demo.common.sh b/man/src/git-hyper-blame.demo.common.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c051aacb180b9a3f63bdd09ea24da81eaacb7d7b
--- /dev/null
+++ b/man/src/git-hyper-blame.demo.common.sh
@@ -0,0 +1,57 @@
+#!/usr/bin/env bash
+. demo_repo.sh
+
+# Construct a plausible file history.
+set_user "lorem"
+V1="Lorem ipsum dolor sit amet, consectetur*
+adipiscing elit, sed do eiusmod tempor
+incididunt ut labore et dolore magna*
+aliqua. Ut enim ad minim veniam, quis
+nostrud exercitation ullamco laboris**
+nisi ut aliquip ex ea commodo consequat.*"
+add "ipsum.txt" "$V1"
+c "Added Lorem Ipsum"
+tick 95408
+
+set_user "ipsum"
+V2="Lorem ipsum dolor sit amet, consectetur*
+adipiscing elit, sed do eiusmod tempor
+incididunt ut labore et dolore magna
+aliqua. Ut enim ad minim veniam, quis
+nostrud exercitation ullamco laboris**
+nisi ut aliquip ex ea commodo consequat.*"
+add "ipsum.txt" "$V2"
+c "Change 1"
+tick 4493194
+
+set_user "dolor"
+V3="Lorem ipsum dolor sit amet, consectetur*
+adipiscing elit, sed do eiusmod tempor
+incididunt ut labore et dolore magna
+aliqua. Ut enim ad minim veniam, quis
+nostrud exercitation ullamco laboris*
+nisi ut aliquip ex ea commodo consequat."
+add "ipsum.txt" "$V3"
+c "Change 2"
+tick 2817200
+
+set_user "auto-uppercaser"
+V4="LOREM IPSUM DOLOR SIT AMET, CONSECTETUR*
+ADIPISCING ELIT, SED DO EIUSMOD TEMPOR
+INCIDIDUNT UT LABORE ET DOLORE MAGNA
+ALIQUA. UT ENIM AD MINIM VENIAM, QUIS
+NOSTRUD EXERCITATION ULLAMCO LABORIS*
+NISI UT ALIQUIP EX EA COMMODO CONSEQUAT."
+add "ipsum.txt" "$V4"
+c "Automatic upper-casing of all text."
+tick 3273029
+
+set_user "lorem"
+V4="LOREM IPSUM DOLOR SIT AMET, CONSECTETUR
+ADIPISCING ELIT, SED DO EIUSMOD TEMPOR
+INCIDIDUNT UT LABORE ET DOLORE MAGNA
+ALIQUA. UT ENIM AD MINIM VENIAM, QUIS
+NOSTRUD EXERCITATION ULLAMCO LABORIS
+NISI UT ALIQUIP EX EA COMMODO CONSEQUAT."
+add "ipsum.txt" "$V4"
+c "Change 3."
« no previous file with comments | « man/src/git-hyper-blame.demo.2.sh ('k') | tests/git_common_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698