9 lines
204 B
Bash
9 lines
204 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git init &&\
|
||
|
git add . && git commit -m "TEMPLATE" &&\
|
||
|
sed -i -e "s/PROJECTNAME/$1/g" ./SConstruct ./.gitignore &&\
|
||
|
rm init-project.sh &&\
|
||
|
git add . && git commit -a -m "INITIALIZED TEMPLATE"
|
||
|
|