We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 186741a commit 03c0bbcCopy full SHA for 03c0bbc
home-manager/git.nix
@@ -145,6 +145,10 @@ in
145
root = "~/repos";
146
};
147
148
+ wt = {
149
+ basedir = "../{gitroot}/.worktrees";
150
+ };
151
+
152
# `git config --get-regexp ^alias` will show current aliases
153
alias = {
154
fixup = "commit --all --amend";
overlays/default.nix
@@ -69,6 +69,7 @@
69
}
70
);
71
72
+ # Don't enable shell integrations, it replaces original `git` command.
73
git-wt = prev.unstable.git-wt.overrideAttrs (
74
finalAttrs: previousAttrs: {
75
# 0.15.0 or later is required to enable https://github.com/k1LoW/git-wt/pull/81
0 commit comments