Created
July 16, 2017 15:36
-
-
Save TuxCoding/f040f6ca705034dcc40111137085e47c to your computer and use it in GitHub Desktop.
Git configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = games647 | |
email = [email protected] | |
signingkey = BFC68C8708713A88 | |
[filter "lfs"] | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
[core] | |
whitespace = warn | |
editor = nano | |
# editor = emacs, vim, ... | |
excludesfile = ~/.gitignore | |
[merge] | |
tool = kdiff3 | |
renormalize = true | |
[diff] | |
guitool = kdiff3 | |
# guitool = meld, kdiff3, ... | |
[help] | |
autocorrect = 300 | |
[commit] | |
gpgsign = true | |
[alias] | |
sign-tag = tag -s | |
pr = pull --rebase | |
[mergetool] | |
keepBackup = false | |
[pull] | |
rebase = true | |
ff = only | |
[color] | |
ui = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
branch = auto | |
[credential] | |
helper = /usr/lib/git/git-credential-gnome-keyring | |
[tag] | |
forceSignAnnotated = true | |
[submodule] | |
fetchJobs = 3 | |
[status] | |
submoduleSummary = true | |
short = true | |
[rebase] | |
stat = true | |
[grep] | |
lineNumber = true | |
[format] | |
signature = | |
[fetch] | |
prune = true | |
[push] | |
followTags = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Eclipse stuff | |
/.classpath | |
/.project | |
/.settings | |
# netbeans | |
/nbproject | |
nb-configuration.xml | |
# maven | |
/target | |
# vim | |
.*.sw[a-p] | |
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | |
hs_err_pid* | |
# various other potential build files | |
/build | |
/bin | |
/dist | |
/manifest.mf | |
*.log | |
# Mac filesystem dust | |
.DS_Store | |
# intellij | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
out/ | |
# Gradle | |
.gradle | |
# Ignore Gradle GUI config | |
gradle-app.setting | |
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) | |
!gradle-wrapper.jar | |
dependency-reduced-pom.xml | |
package-lock.json | |
wget-log* | |
Cargo.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment