config/git: reconfig push aliases
This commit is contained in:
parent
9cd13c7073
commit
50c0fa8326
|
@ -53,6 +53,15 @@
|
||||||
lowSpeedLimit = 1000
|
lowSpeedLimit = 1000
|
||||||
lowSpeedTime = 3
|
lowSpeedTime = 3
|
||||||
|
|
||||||
|
[url "ssh://github.com/"]
|
||||||
|
pushInsteadOf = https://github.com/
|
||||||
|
|
||||||
|
[filter "lfs"]
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
|
smudge = git-lfs smudge -- %f
|
||||||
|
process = git-lfs filter-process
|
||||||
|
required = true
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
# GET INFO
|
# GET INFO
|
||||||
st = status --short --branch --show-stash
|
st = status --short --branch --show-stash
|
||||||
|
@ -126,7 +135,8 @@
|
||||||
|
|
||||||
# Change remote
|
# Change remote
|
||||||
luu = !git pull upstream $(git curbranch) && git push --no-verify
|
luu = !git pull upstream $(git curbranch) && git push --no-verify
|
||||||
p = push -u
|
p = push
|
||||||
|
pu = push -u
|
||||||
pf = push --force-with-lease
|
pf = push --force-with-lease
|
||||||
cap = !git commit --all --amend --no-edit && git push --force-with-lease
|
cap = !git commit --all --amend --no-edit && git push --force-with-lease
|
||||||
|
|
||||||
|
@ -142,9 +152,3 @@
|
||||||
journal = !git cme "notes/journal:" -- $(git root)/2-standards/notes/journal
|
journal = !git cme "notes/journal:" -- $(git root)/2-standards/notes/journal
|
||||||
note = !git cme "notes:" -- $(git root)/2-standards/notes
|
note = !git cme "notes:" -- $(git root)/2-standards/notes
|
||||||
write = !git cme "writings:" -- $(git root)/2-standards/writing
|
write = !git cme "writings:" -- $(git root)/2-standards/writing
|
||||||
|
|
||||||
[filter "lfs"]
|
|
||||||
clean = git-lfs clean -- %f
|
|
||||||
smudge = git-lfs smudge -- %f
|
|
||||||
process = git-lfs filter-process
|
|
||||||
required = true
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ let &backupext="_" . strftime("%y%m%dT%H%M")
|
||||||
set wildmode=longest,list,full " Auto-completion for cmdline
|
set wildmode=longest,list,full " Auto-completion for cmdline
|
||||||
set clipboard+=unnamedplus " Merge with system clipboard
|
set clipboard+=unnamedplus " Merge with system clipboard
|
||||||
|
|
||||||
set shiftwidth=2 " Indentation
|
set shiftwidth=2 expandtab " Indentation
|
||||||
"set shiftwidth=4 tabstop = 4 " Indentation for programming
|
"set shiftwidth=4 tabstop = 4 " Indentation for programming
|
||||||
|
|
||||||
" visuals
|
" visuals
|
||||||
|
|
Loading…
Reference in New Issue