nix config
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

git config?

+3
+3
home/profiles/git/default.nix
··· 56 56 pull.rebase = false; 57 57 push.autoSetupRemote = true; 58 58 init.defaultBranch = "main"; 59 + "url \"git@github.com:\"" = { insteadOf = "https://github.com/"; }; 59 60 }; 60 61 61 62 aliases = { ··· 94 95 95 96 # delete merged branches 96 97 bdm = "!git branch --merged | grep -v '*' | xargs -n 1 git branch -d"; 98 + undo = "!git reset HEAD~1 --mixed"; 99 + blm = "blame -w -C -C -C"; 97 100 }; 98 101 }; 99 102 }