Tosh's Ramen Website
- Docker
run
$ docker-compose up
Open browser and go to:
http://localhost:8180
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
Utility : adds changes to stage/index in your working directory
$ git add
Utility : commits your changes and sets it to new commit object for your remote
$ git commit -m "any message"
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