use ssh instead of https for git connections to github and coastalcommits
This commit is contained in:
parent
53dc0a539d
commit
fc03c3ff7c
1 changed files with 4 additions and 2 deletions
|
@ -36,14 +36,16 @@
|
||||||
init = { defaultBranch = "master"; };
|
init = { defaultBranch = "master"; };
|
||||||
safe = { directory = "/etc/nixos"; };
|
safe = { directory = "/etc/nixos"; };
|
||||||
url = {
|
url = {
|
||||||
"https://www.coastalcommits.com/" = {
|
"git@coastalcommits.com:" = {
|
||||||
insteadOf = [
|
insteadOf = [
|
||||||
|
"https://www.coastalcommits.com/"
|
||||||
"cc:"
|
"cc:"
|
||||||
"coastalcommits:"
|
"coastalcommits:"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"https://github.com/" = {
|
"git@github.com:" = {
|
||||||
insteadOf = [
|
insteadOf = [
|
||||||
|
"https://github.com/"
|
||||||
"gh:"
|
"gh:"
|
||||||
"github:"
|
"github:"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue