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 92121f0 commit cb89e46Copy full SHA for cb89e46
2 files changed
.dir-locals.el
@@ -2,6 +2,8 @@
2
("/.git/COMMIT_EDITMSG\\'" . diff-mode)
3
("\\.ya?ml\\'" . yaml-ts-mode)
4
("\\.json\\'" . js-json-mode)
5
+ ("\\.m?js\\.map\\'" . js-json-mode)
6
+ ("\\.m?ts\\'" . typescript-ts-mode)
7
("\\.mjs\\'" . javascript-mode)))
8
(nil . ((delete-trailing-whitespace . t)
9
(eval . (when (derived-mode-p 'text-mode 'prog-mode 'conf-mode)
Makefile
@@ -17,3 +17,11 @@ clean:
17
-chmod -R a+rwx $@
18
19
FORCE:
20
+
21
+.PHONY: git-push
22
+git-push:
23
+ git add .
24
+ GIT_EDITOR='/snap/bin/emacs -nw' git commit --verbose
25
+ chmod u+r ~/.git-credentials
26
+ git push
27
+ chmod a-rx ~/.git-credentials
0 commit comments