Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 825 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 825 Bytes

Synciety by Emperor-24T3

If you want to run both frontend and backend, run the commands in different terminals

Frontend

Remember to npm install inside the folder /frontend/Emperor whenever you git pull

To run, run npm run dev

Backend

Remember to npm install inside the folder /backend whenever you git pull

To run, run npm start

Git commands

Pulling:

  • git stash if you are working on some things
  • git 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 do git add .
  • git commit -m "<msg>"
  • git push

Branching

  • git branch to see all branches (to exit, write q)
  • git checkout <branch-name> to change into an existing branch
  • git checkout -b <branch-name> to a new branch