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

Side by Side 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, 10 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env bash
2 . demo_repo.sh
3
4 # Construct a plausible file history.
5 set_user "lorem"
6 V1="Lorem ipsum dolor sit amet, consectetur*
7 adipiscing elit, sed do eiusmod tempor
8 incididunt ut labore et dolore magna*
9 aliqua. Ut enim ad minim veniam, quis
10 nostrud exercitation ullamco laboris**
11 nisi ut aliquip ex ea commodo consequat.*"
12 add "ipsum.txt" "$V1"
13 c "Added Lorem Ipsum"
14 tick 95408
15
16 set_user "ipsum"
17 V2="Lorem ipsum dolor sit amet, consectetur*
18 adipiscing elit, sed do eiusmod tempor
19 incididunt ut labore et dolore magna
20 aliqua. Ut enim ad minim veniam, quis
21 nostrud exercitation ullamco laboris**
22 nisi ut aliquip ex ea commodo consequat.*"
23 add "ipsum.txt" "$V2"
24 c "Change 1"
25 tick 4493194
26
27 set_user "dolor"
28 V3="Lorem ipsum dolor sit amet, consectetur*
29 adipiscing elit, sed do eiusmod tempor
30 incididunt ut labore et dolore magna
31 aliqua. Ut enim ad minim veniam, quis
32 nostrud exercitation ullamco laboris*
33 nisi ut aliquip ex ea commodo consequat."
34 add "ipsum.txt" "$V3"
35 c "Change 2"
36 tick 2817200
37
38 set_user "auto-uppercaser"
39 V4="LOREM IPSUM DOLOR SIT AMET, CONSECTETUR*
40 ADIPISCING ELIT, SED DO EIUSMOD TEMPOR
41 INCIDIDUNT UT LABORE ET DOLORE MAGNA
42 ALIQUA. UT ENIM AD MINIM VENIAM, QUIS
43 NOSTRUD EXERCITATION ULLAMCO LABORIS*
44 NISI UT ALIQUIP EX EA COMMODO CONSEQUAT."
45 add "ipsum.txt" "$V4"
46 c "Automatic upper-casing of all text."
47 tick 3273029
48
49 set_user "lorem"
50 V4="LOREM IPSUM DOLOR SIT AMET, CONSECTETUR
51 ADIPISCING ELIT, SED DO EIUSMOD TEMPOR
52 INCIDIDUNT UT LABORE ET DOLORE MAGNA
53 ALIQUA. UT ENIM AD MINIM VENIAM, QUIS
54 NOSTRUD EXERCITATION ULLAMCO LABORIS
55 NISI UT ALIQUIP EX EA COMMODO CONSEQUAT."
56 add "ipsum.txt" "$V4"
57 c "Change 3."
OLDNEW
« 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