modules/git: autoPushRemote and ignore .direnv
This commit is contained in:
parent
92bfe8ad16
commit
137c17b0e2
|
@ -6,6 +6,7 @@
|
||||||
"*.sql"
|
"*.sql"
|
||||||
"*.sql.gz"
|
"*.sql.gz"
|
||||||
"*.sql.zst"
|
"*.sql.zst"
|
||||||
|
".direnv/"
|
||||||
];
|
];
|
||||||
userName = "fleaz";
|
userName = "fleaz";
|
||||||
userEmail = "mail@felixbreidenstein.de";
|
userEmail = "mail@felixbreidenstein.de";
|
||||||
|
@ -20,10 +21,14 @@
|
||||||
"pull" = {
|
"pull" = {
|
||||||
rebase = "true";
|
rebase = "true";
|
||||||
};
|
};
|
||||||
|
"push" = {
|
||||||
|
autoSetupRemote = "true";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
aliases = {
|
aliases = {
|
||||||
|
# checkout-pull-request from GitHub
|
||||||
cpr = "!f() { git fetch origin refs/pull/$1/head && git checkout FETCH_HEAD; }; f";
|
cpr = "!f() { git fetch origin refs/pull/$1/head && git checkout FETCH_HEAD; }; f";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue