Get a local git repo up on an EC2 Instance.
Add yourself to the ssh auth agent, if you haven't already.
ssh-add path/to/your/EC2.pem| /** | |
| * Classes and Inheritance | |
| * Code Example from http://www.es6fiddle.net/ | |
| */ | |
| class Polygon { | |
| constructor(height, width) { //class constructor | |
| this.name = 'Polygon'; | |
| this.height = height; | |
| this.width = width; | |
| } |