Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 599 Bytes

File metadata and controls

19 lines (10 loc) · 599 Bytes

#Climate Change Website for the CCC report

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

$ 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.