If you want to run both frontend and backend, run the commands in different terminals
Remember to npm install
inside the folder /frontend/Emperor
whenever you git pull
To run, run npm run dev
Remember to npm install
inside the folder /backend
whenever you git pull
To run, run npm start
Pulling:
git stash
if you are working on some thingsgit pull
if you want to get work from the cloud
Pushing requires 3 commands successively:
git add <files>
, if you want to push everything up, just dogit add .
git commit -m "<msg>"
git push
Branching
git branch
to see all branches (to exit, writeq
)git checkout <branch-name>
to change into an existing branchgit checkout -b <branch-name>
to a new branch