1.0.0 • Published 5 years ago

joe-eames-npm-playbook v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

to create a local repo, run:

git init

Then create a remote repo on github.com, copy https link and run:

git remote add origin https://github.com/username/remote-repo-name

To initialize Node.js project, run:

npm init

Answer the questions asked and after initialization completion run to add files to the commit:

git add .

This will add all the new files to the commit. To make a commit, run:

git commit -m "Notes about the commit"

To make this commit a remote one, run:

git push -u origin master