Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akshaymittal143/7167665ec72cbe9d443f7d9250aa99fc to your computer and use it in GitHub Desktop.
Save akshaymittal143/7167665ec72cbe9d443f7d9250aa99fc to your computer and use it in GitHub Desktop.
Quick Setup for setting Git project
It is recommended that every repository include a README, LICENSE, and .gitignore.
# create a new repository on the command line
* echo "# Angular-First-Project" >> README.md
* git init
* git add README.md
* git commit -m "first commit"
* git remote add origin https://github.com/akshaymittal143/Angular-First-Project.git
* git push -u origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment