Consider changing the following after cloning:
- package.json: name, repository, author, license
- LICENSE: default is MIT, change author
- .env update envvars
Save storage with pnpm. You can also use regular NPM or Yarn.
pnpm i
To clone this starter repo and add it as an upstream folow below:
git clone [email protected]:leovigna/starter-react-ts.git myproject
cd myproject
git remote set-url origin [email protected]:leovigna/myproject.git
git remote add upstream [email protected]:leovigna/starter-react-ts.git
git push origin master
git push --all
Then to sync any new changes form this repo to the new repo follow this:
git fetch upstream && git checkout master
You can then merge or rebase:
git merge upstream/master
git rebase upstream/master