feat: enable git to auto create branches

This commit is contained in:
oddlama 2023-09-17 16:41:16 +02:00
parent 15210f06b4
commit 3b187c0260
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -12,6 +12,7 @@
merge.conflictstyle = "diff3";
mergetool.prompt = true;
pull.rebase = true;
push.autoSetupRemote = true;
};
aliases = {
unstash = "stash pop";
@ -30,5 +31,6 @@
ga = "git add";
gc = "git commit -v -S";
gca = "${gc} --amend";
# TODO command to make new commit with old commit editmsg, beware worktrees have different path
};
}