FYI: https://bambootuna.com/ci-cd/371/
#!/bin/bash # 初回のみClone、以降はPullする if cd app; then git pull; else git clone $1 app; cd app fi