Sha256: 296f2416a4b91b16a702cf8be04fc4fc6f205f6964a22cb6c30c638d9b9aa259
Contents?: true
Size: 353 Bytes
Versions: 26
Compression:
Stored size: 353 Bytes
Contents
#!/bin/bash set -o nounset set -o errexit ContentFolder="$1" SiteName="$2" OriginRemote="$3" SitePath="$1/$2" # setup site / content / sample / assets [ -d $SitePath ] || mkdir -p $SitePath # setup git repo for site path git init $SitePath # go into the site directory cd $SitePath # add remote origin git remote add origin $OriginRemote
Version data entries
26 entries across 26 versions & 1 rubygems