diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-26 18:09:50 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-26 18:12:53 -0700 |
commit | df7e93656413c90176b41731b5ccd237c972a227 (patch) | |
tree | e0b7a6203f83002c8a2d40aed5857ca886ae99e1 /home | |
parent | fix(gerrit): use a compatible JDK (diff) | |
download | world-df7e93656413c90176b41731b5ccd237c972a227.tar.gz |
feat(home/git): add credential configuration for cl.fcuny.net
Change-Id: I94e28dc52d69c3c2ee4d59a0109c9ae32402fb2c
Diffstat (limited to '')
-rw-r--r-- | home/git/default.nix | 1 | ||||
-rw-r--r-- | home/pass/git-pass-mapping.ini | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/home/git/default.nix b/home/git/default.nix index 3dc2dd0..7e6cd15 100644 --- a/home/git/default.nix +++ b/home/git/default.nix @@ -27,6 +27,7 @@ in { extraConfig = { "credential \"https://github.com\"" = { username = "fcuny"; }; "credential \"https://git.fcuny.net\"" = { username = "fcuny"; }; + "credential \"https://cl.fcuny.net\"" = { username = "fcuny"; }; }; ignores = [ "*.elc" diff --git a/home/pass/git-pass-mapping.ini b/home/pass/git-pass-mapping.ini index 5c5177b..28b7a12 100644 --- a/home/pass/git-pass-mapping.ini +++ b/home/pass/git-pass-mapping.ini @@ -7,3 +7,6 @@ target=git/github.com [git.fcuny.net*] target=git/git.fcuny.net + +[cl.fcuny.net*] +target=git/cl.fcuny.net |