-
Notifications
You must be signed in to change notification settings - Fork 8
Cheatsheet
Md. Shohel Rana edited this page Apr 23, 2018
·
8 revisions
npm install or npm i
npm install "your package name" --save-dev
npm install "your package name" --save
npm i npm
npm cache verify
# if npm version is < 5 then use `npm cache clean`
git clone "your repository name"
git clone "your repository name" --"your favorite name"
git pull -f origin master
git add --all
git commit -m "Your messages"
git push -u origin master
git config --global user.name "Shohel Rana"
git config --global user.email "[email protected]"