2 Commits

Author SHA1 Message Date
phundrak a5bec93228 feat(references): add ticket reference footers
Run checks and build archives / build (linux-aarch64) (push) Successful in 6m58s
Run checks and build archives / coverage-and-sonar (push) Successful in 5m36s
Run checks and build archives / build (linux-x86_64) (push) Successful in 8m14s
Run checks and build archives / build (windows-x86_64) (push) Successful in 6m56s
Refs: #4
2026-06-14 16:56:51 +02:00
phundrak d1c67afd33 docs(README): update the README to reflect new features
Refs: #11
2026-06-14 16:56:51 +02:00
2 changed files with 3 additions and 6 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ revision, you can use the `-n` or `--new` flag.
```sh ```sh
jj-cz -n # equivalent of `jj-cz && jj new` jj-cz -n # equivalent of `jj-cz && jj new`
jj-cz xs -n # equivalent of `jj-cz xs && jj new xs` jj-cz xs -n # equivalent of `jj-cz xs && jj new`
jj-cz -n xs # equivalent of `jj-cz xs && jj new xs` jj-cz -n xs # equivalent of `jj-cz xs && jj new`
``` ```
You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active. You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active.
+1 -4
View File
@@ -9,10 +9,7 @@ pkgs.stdenv.mkDerivation rec {
nativeBuildInputs = [pkgs.zip]; nativeBuildInputs = [pkgs.zip];
buildPhase = '' buildPhase = ''
mkdir -p $out/dist mkdir -p $out/dist
# zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.* zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.*
cp ${bin}/bin/jj-cz* $out/dist/
cp ${src}/README.md $out/dist/
cp ${src}/LICENSE.* $out/dist/
''; '';
installPhase = ""; installPhase = "";
dontConfigure = true; dontConfigure = true;