projects
/
aoc-2021.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8274d68
)
fix(git): Remove unnecessary git_hooks dir.
author
sgf
<sgf.dma@gmail.com>
Fri, 10 Dec 2021 21:09:05 +0000
(
00:09
+0300)
committer
sgf
<sgf.dma@gmail.com>
Fri, 10 Dec 2021 21:09:05 +0000
(
00:09
+0300)
day1/git_hooks/post-commit
[deleted file]
patch
|
blob
|
history
diff --git
a/day1/git_hooks/post-commit
b/day1/git_hooks/post-commit
deleted file mode 100755
(executable)
index
f5002cd
..0000000
--- a/
day1/git_hooks/post-commit
+++ /dev/null
@@
-1,11
+0,0 @@
-#!/bin/sh
-
-set -euf
-
-remotes="$(git remote)"
-if echo "$remotes" | grep -q 'sync'; then
- git push --all sync
- git push --tags sync
-else
- echo ">>>>> No sync remote defined." 1>&2
-fi