We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6927924 commit bccfd94Copy full SHA for bccfd94
justfile
@@ -17,9 +17,16 @@ term:
17
term-kill:
18
zellij delete-session qownnotesapi -f
19
20
+# Apply the patch to the qownnotesapi repository
21
git-apply-patch:
22
git apply {{ transferDir }}/qownnotesapi.patch
23
24
+# Create a patch from the staged changes in the qownnotesapi repository
25
+@git-create-patch:
26
+ echo "transferDir: {{ transferDir }}"
27
+ git diff --no-ext-diff --staged --binary > {{ transferDir }}/qownnotesapi.patch
28
+ ls -l1t {{ transferDir }}/ | head -2
29
+
30
# Format all justfiles
31
just-format:
32
#!/usr/bin/env bash
0 commit comments