Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 843 Bytes

File metadata and controls

23 lines (12 loc) · 843 Bytes

#Climate Change Website for the CCC report

To get this project working you will need NodeJS installed then navigate to working DIR of project and run "node index.js" then navigate to localhost:3000 in the browser to see the server

How to update the Repo from the command line:

Before you do any work on the project open the Command Line (Windows key + Search cmd) run the following command to update your local version on your computer:

$ git pull

To save your changes complete the following commands:

$ git add .

#Adds the file to your local repository and stages it for commit.

$ git commit -m "Add existing file"

#Commits the tracked changes and prepares them to be pushed to a remote repository.

$ git push origin your-branch

#Pushes the changes in your local repository up to the remote repository you specified as the origin.