Fresh repo without sensitive data.
This commit is contained in:
commit
9003080a64
44 changed files with 2039 additions and 0 deletions
15
config/etc/gitconfig
Normal file
15
config/etc/gitconfig
Normal file
|
@ -0,0 +1,15 @@
|
|||
[user]
|
||||
name = derped
|
||||
email = derped@ophanim.de
|
||||
|
||||
[alias]
|
||||
get = clone --recursive
|
||||
blame = -w -M
|
||||
update = !git pull && git submodule update --init --recursive
|
||||
comma = commit --amend
|
||||
uncommit = reset --soft HEAD^
|
||||
pr = !"pr() { git fetch origin pull/$1/head:pr-$1; git checkout pr-$1; }; pr"
|
||||
pru = !"pr() { git fetch upstream pull/$1/head:pr-$1; git checkout pr-$1; }; pr"
|
||||
backport = cherry-pick -x
|
||||
reset-pr = reset --hard FETCH_HEAD
|
||||
publish = !git pull && git push
|
Loading…
Add table
Add a link
Reference in a new issue