Skip to content

Latest commit

 

History

History
executable file
·
46 lines (32 loc) · 992 Bytes

TEMPLATE.md

File metadata and controls

executable file
·
46 lines (32 loc) · 992 Bytes

React Typescript Template

Things to update

Consider changing the following after cloning:

Installing

Save storage with pnpm. You can also use regular NPM or Yarn.

pnpm i

Cloning

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