forked from kunsi/dotfiles
remove hist alias in fish, add to .gitconfig, add git pfusch
This commit is contained in:
parent
6d1ed7ca6e
commit
7f0657e3b7
2 changed files with 12 additions and 10 deletions
|
@ -14,7 +14,6 @@ alias gm='git checkout main && git pull --all'
|
||||||
alias gs='git status --short'
|
alias gs='git status --short'
|
||||||
alias gd='git diff'
|
alias gd='git diff'
|
||||||
alias gdc='git diff --cached'
|
alias gdc='git diff --cached'
|
||||||
alias hist='git log --pretty --oneline'
|
|
||||||
alias l='ls -lAh'
|
alias l='ls -lAh'
|
||||||
alias please='sudo'
|
alias please='sudo'
|
||||||
|
|
||||||
|
|
21
.gitconfig
21
.gitconfig
|
@ -1,20 +1,23 @@
|
||||||
[user]
|
[user]
|
||||||
name = Franziska Kunsmann
|
name = Franziska Kunsmann
|
||||||
email = hi@kunsmann.eu
|
email = hi@kunsmann.eu
|
||||||
signingkey = 5FE37FF3C981A9146C3805324205EF53ECE0D2BC
|
signingkey = 5FE37FF3C981A9146C3805324205EF53ECE0D2BC
|
||||||
|
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
tree = log --all --graph --decorate --oneline
|
hist = log --graph --abbrev-commit --decorate --format=format:'%C(red)%h%C(reset) - %C(green)(%ar)%C(reset) %C(reset)%s %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' -32
|
||||||
logs = log --show-signature
|
logs = log --show-signature
|
||||||
|
pfusch = push --force-with-lease
|
||||||
|
|
||||||
[pager]
|
[pager]
|
||||||
branch = false
|
branch = false
|
||||||
config = false
|
config = false
|
||||||
stash = false
|
stash = false
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
ff = only
|
ff = only
|
||||||
|
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
Loading…
Reference in a new issue