| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,44 @@ |
| 1 |
+# Title: .gitconfig |
|
| 2 |
+# Author: Frédéric CHEVALIER <f15.chevalier@gmail.com> |
|
| 3 |
+# Version: 0.0 |
|
| 4 |
+# Created in: 2021-01-13 |
|
| 5 |
+# Modified in: |
|
| 6 |
+ |
|
| 7 |
+ |
|
| 8 |
+ |
|
| 9 |
+#==========# |
|
| 10 |
+# Comments # |
|
| 11 |
+#==========# |
|
| 12 |
+ |
|
| 13 |
+# ~/.gitconfig: executed when running git |
|
| 14 |
+# see https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration |
|
| 15 |
+ |
|
| 16 |
+ |
|
| 17 |
+ |
|
| 18 |
+#==========# |
|
| 19 |
+# Versions # |
|
| 20 |
+#==========# |
|
| 21 |
+ |
|
| 22 |
+# v0.0 - 2021-01-13: creation |
|
| 23 |
+ |
|
| 24 |
+ |
|
| 25 |
+ |
|
| 26 |
+#======================# |
|
| 27 |
+# User specific config # |
|
| 28 |
+#======================# |
|
| 29 |
+ |
|
| 30 |
+[include] |
|
| 31 |
+ path = .gitconfig-pro |
|
| 32 |
+[includeIf "gitdir:perso/"] |
|
| 33 |
+ path = .gitconfig-perso |
|
| 34 |
+ |
|
| 35 |
+ |
|
| 36 |
+ |
|
| 37 |
+#================# |
|
| 38 |
+# General config # |
|
| 39 |
+#================# |
|
| 40 |
+ |
|
| 41 |
+[push] |
|
| 42 |
+ default = simple |
|
| 43 |
+[http] |
|
| 44 |
+ sslVerify = true |
| 0 | 45 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,31 @@ |
| 1 |
+# Title: .gitconfig-perso |
|
| 2 |
+# Author: Frédéric CHEVALIER <f15.chevalier@gmail.com> |
|
| 3 |
+# Version: 0.0 |
|
| 4 |
+# Created in: 2021-01-13 |
|
| 5 |
+# Modified in: |
|
| 6 |
+ |
|
| 7 |
+ |
|
| 8 |
+ |
|
| 9 |
+#==========# |
|
| 10 |
+# Comments # |
|
| 11 |
+#==========# |
|
| 12 |
+ |
|
| 13 |
+# ~/.gitconfig-perso: executed only for personal folders listed in .gitconfig |
|
| 14 |
+ |
|
| 15 |
+ |
|
| 16 |
+ |
|
| 17 |
+#==========# |
|
| 18 |
+# Versions # |
|
| 19 |
+#==========# |
|
| 20 |
+ |
|
| 21 |
+# v0.0 - 2021-01-13: creation |
|
| 22 |
+ |
|
| 23 |
+ |
|
| 24 |
+ |
|
| 25 |
+#========# |
|
| 26 |
+# Config # |
|
| 27 |
+#========# |
|
| 28 |
+ |
|
| 29 |
+[user] |
|
| 30 |
+ email = f15.chevalier@gmail.com |
|
| 31 |
+ name = Fred |
| 0 | 32 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,31 @@ |
| 1 |
+# Title: .gitconfig-pro |
|
| 2 |
+# Author: Frédéric CHEVALIER <f15.chevalier@gmail.com> |
|
| 3 |
+# Version: 0.0 |
|
| 4 |
+# Created in: 2021-01-13 |
|
| 5 |
+# Modified in: |
|
| 6 |
+ |
|
| 7 |
+ |
|
| 8 |
+ |
|
| 9 |
+#==========# |
|
| 10 |
+# Comments # |
|
| 11 |
+#==========# |
|
| 12 |
+ |
|
| 13 |
+# ~/.gitconfig-pro: executed for all non-personal folders |
|
| 14 |
+ |
|
| 15 |
+ |
|
| 16 |
+ |
|
| 17 |
+#==========# |
|
| 18 |
+# Versions # |
|
| 19 |
+#==========# |
|
| 20 |
+ |
|
| 21 |
+# v0.0 - 2021-01-13: creation |
|
| 22 |
+ |
|
| 23 |
+ |
|
| 24 |
+ |
|
| 25 |
+#========# |
|
| 26 |
+# Config # |
|
| 27 |
+#========# |
|
| 28 |
+ |
|
| 29 |
+[user] |
|
| 30 |
+ email = fcheval@txbiomed.org |
|
| 31 |
+ name = fdchevalier |