This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--<!DOCTYPE html>Commented out for codepen--> | |
<html> | |
<head> | |
<title> WasteNot Developer Guide </title> | |
</head> | |
<body> | |
<div id="logo-header"> | |
<h1>CSULB WasteNot</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This guide assumes... | |
- You already made a Git repo online. | |
- You cloned and initialized it. | |
- You have already started working on the project and have content in master. | |
Locally: | |
1) git checkout master | |
- To go back to master branch | |
2) git pull origin master | |
- Fetch and merge the latest updates from remote master to your local repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This guide assumes... | |
- You already made a Git repo online. | |
- You cloned and initialized it. | |
- You have already started working on the project and have content in master. | |
Locally: | |
1) git checkout master | |
- To go back to master branch | |
2) git pull origin master | |
- Fetch and merge the latest updates from remote master to your local repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |