From e699f1f1575699e7b48499a1524b2d8af6f1db30 Mon Sep 17 00:00:00 2001 From: taco_diabolo Date: Sun, 18 Jul 2021 13:53:09 +0200 Subject: [PATCH] Add git files --- .git_commit_template.txt | 43 +++++++++++++++++++++++++++++++++++++++ .git_issue_template.txt | 32 +++++++++++++++++++++++++++++ .gitconfig | 44 ++++++++++++++++++++++++++++++++++++++++ .gitignore | 2 ++ 4 files changed, 121 insertions(+) create mode 100644 .git_commit_template.txt create mode 100644 .git_issue_template.txt create mode 100644 .gitconfig create mode 100644 .gitignore diff --git a/.git_commit_template.txt b/.git_commit_template.txt new file mode 100644 index 00000000..986e2e3a --- /dev/null +++ b/.git_commit_template.txt @@ -0,0 +1,43 @@ +# For the subject line: +# * Use 50 characters maximum. +# * Do not use a sentence-ending period. +Add your title here + +# Why is this change happening, e.g. goals, use cases, stories, etc.? +Why: + +# How is this change happening, e.g. implementations, algorithms, etc.? +How: + +# Tags suitable for searching, such as hashtags, keywords, etc. +Tags: + +# See links to relevant web pages, issue trackers, blog articles, etc. +# See: https://example.com/ +# See: [Example Page](https://example.com/) + +# List all co-authors, so version control systems can connect teams. +# Co-authored-by: Name +# Co-authored-by: Name + +# ## Help ## +# +# Subject line imperative uppercase verbs: +# +# Add = Create a capability e.g. feature, test, dependency. +# Drop = Delete a capability e.g. feature, test, dependency. +# Fix = Fix an issue e.g. bug, typo, accident, misstatement. +# Bump = Increase the version of something e.g. a dependency. +# Make = Change the build process, or tools, or infrastructure. +# Start = Begin doing something; e.g. enable a toggle, feature flag, etc. +# Stop = End doing something; e.g. disable a toggle, feature flag, etc. +# Optimize = A change that MUST be just about performance, e.g. speed up code. +# Document = A change that MUST be only in the documentation, e.g. help files. +# Refactor = A change that MUST be just refactoring. +# Reformat = A change that MUST be just format, e.g. indent line, trim space, etc. +# Rephrase = A change that MUST be just textual, e.g. edit a comment, doc, etc. +# +# +# For the body text: +# * Use as many lines as you like. +# * Use 72 characters maximum per line for typical word wrap text. \ No newline at end of file diff --git a/.git_issue_template.txt b/.git_issue_template.txt new file mode 100644 index 00000000..a5299e46 --- /dev/null +++ b/.git_issue_template.txt @@ -0,0 +1,32 @@ + + +## Expected Behavior + + + +## Current Behavior + + + +## Possible Solution + + + +## Steps to Reproduce (for bugs) + + +1. +2. +3. +4. + +## Context + + + +## Your Environment + +* Version used: +* Environment name and version (e.g. Chrome 39, node.js 5.4): +* Operating System and version (desktop or mobile): +* Link to your project: \ No newline at end of file diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 00000000..47e022b1 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,44 @@ +[user] + name = taco_diabolo +[color] + ui = auto + filemode = false +[color "branch"] + + current = green bold + local = green + remote = yellow + +[color "diff"] + + frag = magenta + meta = yellow + new = green + old = red + +[color "status"] + + added = green reverse + changed = yellow reverse + untracked = red reverse +[core] + editor = "$(which vim) -g -c 'set tw=72' -c 'set formatoptions+=w' --remote-wait-silent" + excludesfile = ~/.gitignore + attributesfile = ~/.gitattributes + autocrlf = input +[merge] + tool = vimdiff + +[diff] + tool = vimdiff +[pager] + diff = "vim -c '%sm/\\e.\\{-}m//ge' -c 'set ft=diff' -c 'normal gg' -" +[diff "bin"] + + # Use `hexdump` to diff binary files + + textconv = hexdump -v -C +[commit] + template = ~/.git_commit_template.txt +[credential] + helper = store \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..575f0b04 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.config/coc/extensions +.gitconfig \ No newline at end of file