Skip to content

Commit

Permalink
feat(git): base updates for multi user (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
RemoteRabbit authored Oct 9, 2024
1 parent 9410acf commit 0635aef
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
14 changes: 5 additions & 9 deletions git/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,10 @@
pushInsteadOf = "git://gist.github.com/"

[url "git://gist.github.com/"]
insteadOf = "gist:"
insteadOf = "gist:"

[user]
email = [email protected]
name = Tristan Jahnke
; signingkey = D7FAE6E3907AFD59D3FC98C269031F01E982EA9E
username = RemoteRabbit
signingkey = 0172279706FC09C7748C132B7B61F5482EE59E84
[includeIf "gitdir:~/repos/personal/**"]
path = ~/repos/personal/dot_files/git/personal.gitconfig

[includeIf "gitdir:~/work/wendys/**"]
path = ~/dot_files/git/wendys.gitconfig
[includeIf "gitdir:~/repos/work/**"]
path = ~/repos/personal/dot_files/git/work.gitconfig
1 change: 1 addition & 0 deletions git/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
work.gitconfig
28 changes: 28 additions & 0 deletions git/personal.gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[url "git@personal:github"]
insteadOf = "https://github.com/github"
insteadOf = "github:github"
insteadOf = "git://github.com/github"

[url "git@personal:"]
pushInsteadOf = "https://github.com/"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"

[url "git://personal/"]
insteadOf = "github:"

[url "[email protected]:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"

[url "git://gist.personal/"]
insteadOf = "gist:"

[user]
email = [email protected]
name = Tristan Jahnke
username = RemoteRabbit

[core]
sshCommand = "ssh -i ~/.ssh/proton"

0 comments on commit 0635aef

Please sign in to comment.