8 lines
136 B
Bash
8 lines
136 B
Bash
#!/bin/bash
|
|
# Simple git pull script for webhook
|
|
|
|
cd /data/app/igny8
|
|
git pull origin main
|
|
git update-ref refs/remotes/origin/main HEAD
|
|
|