Skip to content

Instantly share code, notes, and snippets.

View edwardspresume's full-sized avatar
🎯
Concentration

Edwards Presume edwardspresume

🎯
Concentration
View GitHub Profile
@bradtraversy
bradtraversy / npmcrashcourse.txt
Last active December 8, 2024 04:20
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
@Kerry350
Kerry350 / git-commands.mkd
Last active April 23, 2020 04:23
Common Git commands

A little lookup for commands I use frequently

  • Commit all edited files and add a message

git commit -a -m "My commit"

  • Add all new files

git add .