Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 836 Bytes

File metadata and controls

41 lines (36 loc) · 836 Bytes

Tosh's Ramen

Tosh's Ramen Website

Requirements

  1. Docker

Setup

Step 1

run

$ docker-compose up
Step 2

Open browser and go to:

http://localhost:8180

Git Commands

1. git status

Utility : To check the status of files you’ve changed in your working directory, i.e, what all has changed since your last commit

$ git status

2. git add

Utility : adds changes to stage/index in your working directory

$ git add

3. git commit

Utility : commits your changes and sets it to new commit object for your remote

$ git commit -m "any message"

4. git pull/push

Utility : Push or Pull your changes to remote. If you have added and committed your changes and you want to push them. Or if your remote has updated and you want those latest change

$ git push