fix(git): remove --signoff
flag from ci
alias
- Updated `ci` alias in both NixOS and Home modules to exclude the `--signoff` flag. - Ensures compatibility and avoids unnecessary signing for commit alias.
This commit is contained in:
parent
58f4ff1401
commit
18a5fd3a6f
2 changed files with 2 additions and 3 deletions
|
@ -58,7 +58,7 @@ in
|
||||||
};
|
};
|
||||||
alias = {
|
alias = {
|
||||||
co = "checkout";
|
co = "checkout";
|
||||||
ci = "commit --signoff";
|
ci = "commit";
|
||||||
dlog = "-c diff.external=difft log --ext-diff -p";
|
dlog = "-c diff.external=difft log --ext-diff -p";
|
||||||
dshow = "-c diff.external=difft show --ext-diff";
|
dshow = "-c diff.external=difft show --ext-diff";
|
||||||
ddiff = "-c diff.external=difft diff";
|
ddiff = "-c diff.external=difft diff";
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
options,
|
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
@ -51,7 +50,7 @@ in
|
||||||
};
|
};
|
||||||
alias = {
|
alias = {
|
||||||
co = "checkout";
|
co = "checkout";
|
||||||
ci = "commit --signoff";
|
ci = "commit";
|
||||||
};
|
};
|
||||||
pull.ff = "only";
|
pull.ff = "only";
|
||||||
core.pager = "${pkgs.delta}/bin/delta";
|
core.pager = "${pkgs.delta}/bin/delta";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue