Add devcpone bootstrap
This commit is contained in:
15
README.md
Normal file
15
README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# BE_CPONE
|
||||
|
||||
## Devcpone sync
|
||||
|
||||
This repo includes a local git hook setup for syncing changes to devcpone.
|
||||
|
||||
Run this once in a fresh clone:
|
||||
|
||||
```sh
|
||||
./scripts/devcpone_bootstrap.sh
|
||||
```
|
||||
|
||||
After that, pushing `master` will sync changed files to:
|
||||
|
||||
`one@devcpone.aplikasi.web.id:/home/one/project/one/one-api`
|
||||
13
scripts/devcpone_bootstrap.sh
Executable file
13
scripts/devcpone_bootstrap.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
repo_root=$(git rev-parse --show-toplevel)
|
||||
|
||||
git config --local core.hooksPath .githooks
|
||||
|
||||
if [ ! -x "$repo_root/.githooks/pre-push" ]; then
|
||||
chmod +x "$repo_root/.githooks/pre-push" "$repo_root/.githooks/post-commit" 2>/dev/null || true
|
||||
fi
|
||||
|
||||
printf '%s\n' "devcpone hooks enabled for this checkout"
|
||||
printf '%s\n' "push to master will sync to one@devcpone.aplikasi.web.id:/home/one/project/one/one-api"
|
||||
Reference in New Issue
Block a user