diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-03 18:40:37 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-03 18:40:37 -0700 |
commit | c14d0a89a2b9a2e9d8f2c5f4517bc35169f2cf86 (patch) | |
tree | 4082bf76c038b6389dad68b0fd825dfbf832d4ec /bin | |
parent | 5446509b96d5d5bcd0aa9855ce5b9568fe706eb7 (diff) | |
download | locchat-c14d0a89a2b9a2e9d8f2c5f4517bc35169f2cf86.tar.gz locchat-c14d0a89a2b9a2e9d8f2c5f4517bc35169f2cf86.zip |
remove unused names
Diffstat (limited to 'bin')
-rw-r--r-- | bin/setup_new_project.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/setup_new_project.sh b/bin/setup_new_project.sh index bcffc7d..9255c5e 100644 --- a/bin/setup_new_project.sh +++ b/bin/setup_new_project.sh @@ -8,8 +8,11 @@ echo "Where is your git repo? (eg git@github.com:dittonjs/NestStarterApp.git)" read reponame +# replace the title of the README with new app name sed -i "s/USU CS4610 Nest Starter App/$appname/" README.md +git add . +git commit -m "setup new project '$appname'" git remote rename origin upstream git remote add origin $reponame git branch -M main |