summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-07-02 17:09:02 +0200
committerSkladnayazebra <skladnayazebra@gmail.com>2026-07-02 17:09:02 +0200
commitb30ed4075f2db3a23e20e2e11c1c4a1b52f1e6e4 (patch)
tree486ee66f3474b7003c7b6e82a71f49292a9f13ae /git
parent61b919dba60d6d36735b18a1e1af5988c2c8eac2 (diff)
global git config
Diffstat (limited to 'git')
-rw-r--r--git/config16
-rw-r--r--git/work.inc3
2 files changed, 19 insertions, 0 deletions
diff --git a/git/config b/git/config
new file mode 100644
index 0000000..f34c656
--- /dev/null
+++ b/git/config
@@ -0,0 +1,16 @@
+[alias]
+ st = status
+ co = checkout
+ ci = commit
+ br = branch
+ sw = switch
+[push]
+ autoSetupRemote = true
+[core]
+ editor = nvim
+ autocrlf = input
+[fetch]
+ prune = true
+
+[includeIf "gitdir:~/projects/"]
+ path = ./work.inc
diff --git a/git/work.inc b/git/work.inc
new file mode 100644
index 0000000..70629a7
--- /dev/null
+++ b/git/work.inc
@@ -0,0 +1,3 @@
+[user]
+ email = alexey.mikhailenko@developertools.com
+ name = Alexey Mikhailenko