Indent using tabs
This commit is contained in:
parent
6fc4f80ce2
commit
0d5afb169a
1 changed files with 46 additions and 46 deletions
92
.gitconfig
92
.gitconfig
|
@ -1,73 +1,73 @@
|
||||||
[user]
|
[user]
|
||||||
name = Rodolphe Bréard
|
name = Rodolphe Bréard
|
||||||
email = v.code.ngyvz7vf@what.tf
|
email = v.code.ngyvz7vf@what.tf
|
||||||
signingkey = /home/rodolphe/.ssh/id_ed25519.pub
|
signingkey = /home/rodolphe/.ssh/id_ed25519.pub
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
|
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
s = switch
|
s = switch
|
||||||
r = restore
|
r = restore
|
||||||
df = diff --color-words
|
df = diff --color-words
|
||||||
br = branch
|
br = branch
|
||||||
ci = commit
|
ci = commit
|
||||||
st = status
|
st = status
|
||||||
unstage = reset HEAD --
|
unstage = reset HEAD --
|
||||||
last = log -1 HEAD
|
last = log -1 HEAD
|
||||||
undo = reset --soft HEAD^
|
undo = reset --soft HEAD^
|
||||||
amend = commit --amend
|
amend = commit --amend
|
||||||
|
|
||||||
; ms: merge squash
|
; ms: merge squash
|
||||||
; Squash commits from the target branch and merge them into the current branch.
|
; Squash commits from the target branch and merge them into the current branch.
|
||||||
ms = merge --squash
|
ms = merge --squash
|
||||||
|
|
||||||
;
|
;
|
||||||
; http://blogs.atlassian.com/2014/10/advanced-git-aliases/
|
; http://blogs.atlassian.com/2014/10/advanced-git-aliases/
|
||||||
;
|
;
|
||||||
ls = log --oneline
|
ls = log --oneline
|
||||||
|
|
||||||
; caa: commit amend append
|
; caa: commit amend append
|
||||||
; Take all uncommitted and un-staged changes currently in the working directory and add them to the previous commit.
|
; Take all uncommitted and un-staged changes currently in the working directory and add them to the previous commit.
|
||||||
caa = commit -a --amend -C HEAD
|
caa = commit -a --amend -C HEAD
|
||||||
|
|
||||||
; new: see new commits
|
; new: see new commits
|
||||||
; Displays commits created by the last command (typically after a git pull).
|
; Displays commits created by the last command (typically after a git pull).
|
||||||
new = !sh -c 'git log $1@{1}..$1@{0} "$@"'
|
new = !sh -c 'git log $1@{1}..$1@{0} "$@"'
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
branch = auto
|
branch = auto
|
||||||
diff = auto
|
diff = auto
|
||||||
status = auto
|
status = auto
|
||||||
|
|
||||||
[color "branch"]
|
[color "branch"]
|
||||||
current = yellow reverse
|
current = yellow reverse
|
||||||
local = yellow
|
local = yellow
|
||||||
remote = green
|
remote = green
|
||||||
|
|
||||||
[color "diff"]
|
[color "diff"]
|
||||||
meta = yellow bold
|
meta = yellow bold
|
||||||
frag = magenta bold
|
frag = magenta bold
|
||||||
old = red bold
|
old = red bold
|
||||||
new = green bold
|
new = green bold
|
||||||
|
|
||||||
[color "status"]
|
[color "status"]
|
||||||
added = yellow
|
added = yellow
|
||||||
changed = green
|
changed = green
|
||||||
untracked = cyan
|
untracked = cyan
|
||||||
|
|
||||||
[commit]
|
[commit]
|
||||||
template = ~/.git_commit_msg.txt
|
template = ~/.git_commit_msg.txt
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
|
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
||||||
[gpg]
|
[gpg]
|
||||||
format = ssh
|
format = ssh
|
||||||
|
|
Loading…
Reference in a new issue