Skip to content

Commit 1a5959a

Browse files
committed
Commit test examples
1 parent e198c0d commit 1a5959a

File tree

3 files changed

+127
-0
lines changed

3 files changed

+127
-0
lines changed
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
commit f6086641f4cfe7c28559db99c27a964b3af31dab (HEAD -> master, origin/master)
2+
Author: Eric Nielsen <eric@amalgamar.com.br>
3+
Date: Thu Oct 8 10:10:45 2020 -0500
4+
5+
Add class Name
6+
7+
diff --git a/Person.java b/Person.java
8+
index 971edb4..ef67116 100644
9+
--- a/Person.java
10+
+++ b/Person.java
11+
@@ -3,6 +3,11 @@ import lombok.NonNull;
12+
13+
@Data
14+
public class Person {
15+
- private Long id;
16+
- @NonNull private String name;
17+
+ private Long id;
18+
+ @Data
19+
+ public class Name {
20+
+ @NonNull private String first;
21+
+ @NonNull private String last;
22+
+ }
23+
+ @NonNull private Name name;
24+
}
25+
26+
commit f94abd9a5d883bcf2bdee4ff735f1c3a62cc9346
27+
Author: Eric Nielsen <eric@amalgamar.com.br>
28+
Date: Thu Oct 8 10:03:54 2020 -0500
29+
30+
Replace "@NonNull" by spaces
31+
32+
diff --git a/Person.java b/Person.java
33+
index 07255bf..971edb4 100644
34+
--- a/Person.java
35+
+++ b/Person.java
36+
@@ -3,6 +3,6 @@ import lombok.NonNull;
37+
38+
@Data
39+
public class Person {
40+
- @NonNull private Long id;
41+
+ private Long id;
42+
@NonNull private String name;
43+
}
44+
45+
commit 4b3c2a712bef024228a95db7a318de3ebc23e11d
46+
Author: Eric Nielsen <eric@amalgamar.com.br>
47+
Date: Wed Oct 7 18:28:30 2020 -0500
48+
49+
Add "@NonNull "
50+
51+
diff --git a/Person.java b/Person.java
52+
index c6c830c..07255bf 100644
53+
--- a/Person.java
54+
+++ b/Person.java
55+
@@ -1,7 +1,8 @@
56+
import lombok.Data;
57+
+import lombok.NonNull;
58+
59+
@Data
60+
public class Person {
61+
- private Long id;
62+
- private String name;
63+
+ @NonNull private Long id;
64+
+ @NonNull private String name;
65+
}
66+
67+
commit 27866afcea30970731ac032b108661fd0c247f2b
68+
Author: Eric Nielsen <eric@amalgamar.com.br>
69+
Date: Wed Oct 7 18:27:28 2020 -0500
70+
71+
First commit
72+
73+
diff --git a/Person.java b/Person.java
74+
new file mode 100644
75+
index 0000000..c6c830c
76+
--- /dev/null
77+
+++ b/Person.java
78+
@@ -0,0 +1,7 @@
79+
+import lombok.Data;
80+
+
81+
+@Data
82+
+public class Person {
83+
+ private Long id;
84+
+ private String name;
85+
+}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[core]
2+
pager = delta
3+
[color "diff-highlight"]
4+
oldNormal = red bold
5+
oldHighlight = red bold 52
6+
newNormal = green bold
7+
newHighlight = green bold 22
8+
[color "diff"]
9+
meta = yellow bold
10+
frag = magenta bold
11+
commit = yellow bold
12+
old = red bold
13+
new = green bold
14+
whitespace = red reverse
15+
[delta]
16+
commit-decoration-style = yellow ol ul
17+
file-style = bold yellow
18+
file-decoration-style = yellow box
19+
hunk-header-style = bold 146
20+
hunk-header-decoration-style =
21+
minus-style = bold red
22+
minus-non-emph-style = bold red
23+
minus-emph-style = bold red 52
24+
minus-empty-line-marker-style = normal
25+
zero-style = normal
26+
plus-style = bold green
27+
plus-non-emph-style = bold green
28+
plus-emph-style = bold green 22
29+
plus-empty-line-marker-style = normal
30+
keep-plus-minus-markers = true
31+
line-numbers = false
32+
side-by-side = true
33+
[diff-so-fancy]
34+
markEmptyLines = false
35+
stripLeadingSymbols = false
36+
rulerWidth = 50
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
diff --git a/Cargo.toml b/Cargo.toml
2+
index 93f58aea..2f945245 100644
3+
--- a/Cargo.toml
4+
+++ b/Cargo.toml
5+
@@ -11,6 +11,7 @@ readme = "README.md"
6+
+

0 commit comments

Comments
 (0)