stagit

created pr with ps-212 on 2026-03-07T05:29:02Z · by 2e243015
changed status to closed on 2026-03-07T11:34:54Z · by 2e243015
cmds
checkout latest patchset:
ssh pr.pico.sh print pr-120 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 120
set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 120
set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 120

Patchset ps-212 on 2026-03-07T05:29:02Z · commit d34c054

Add LICENSE.txt to *licensefiles
Paul W. Rankin 2026-03-07T05:26:26Z
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (1 file skipped: unsupported file type)
+1 -1 stagit.c #
@@ -67,7 +67,7 @@ static char *strippedname = "";
 static char description[255];
 static char cloneurl[1024];
 static char *submodules;
-static char *licensefiles[] = { "HEAD:LICENSE", "HEAD:LICENSE.md", "HEAD:COPYING" };
+static char *licensefiles[] = { "HEAD:LICENSE", "HEAD:LICENSE.md", "HEAD:LICENSE.txt", "HEAD:COPYING" };
 static char *license;
 static char *readmefiles[] = { "HEAD:README", "HEAD:README.md" };
 static char *readme;
Back to top