πββοΈGetting started!
Overview
Step by step guide
# Only if you don't have yarn already
# (you need https://brew.sh to run the next command)
brew install yarn
#
git clone https://github.com/<user_name>/<project_name> <project_name>_landingpage
cd <project_name>_landingpage
git checkout --orphan landingpage && git rm -rf .
yarn create react-app . --template gitlanding
git add -A
git commit -m "Initial commit"
git push --set-upstream origin landingpagegit clone https://github.com/<user_name>/<project_name> <project_name>_landingpage
cd <project_name>_landingpage
git checkout --orphan landingpage
git rm -rf .
yarn create react-app . --template gitlanding
git add -A
git commit -m "Initial commit"
git push --set-upstream origin landingpage

Last updated