Email Performance Enhancement Drugs
First things first you will need to download node.js http://nodejs.org/ and git http://git-scm.com/downloads
Then you will want to clone the git repo:
- open your terminal and naviagte to where you want the directory to be
- type
git clone https://github.com/pollardld/email_PEDs.git
Next type git status
just to make sure everything is clean.
You can now open up the project in your IDE and do whatevers.
Made some changes, ready to make a commit?
- open up your terminal and naviagte into the root directory of email_PEDs (if not already there).
- type
git init
- type
git add .
this will add all changed files, if you only want to add one of your files replace the . with the file name or directory. - type
git commit -m '
add a message describing what you did likeupdated index.js'
- now time to add the remote repo
git remote add origin https://github.com/pollardld/email_PEDs.git
- then push that shit
git push origin master
Any more commits will not require the git remote add origin step.