CLI ‐ Git | Node - FullstackCodingGuy/Developer-Fundamentals GitHub Wiki
Clone an application into a desired folder
git clone https://github.com/albinotonnina/albinotonnina.com <your-appname>
cd npm install
node server.js
Configure Node Environment (Local)
npm set init.author.name "Your name"
npm set init.author.email "[email protected]"
npm set init.author.url "https://your-url.com"
npm set init.license "MIT"
npm set init.version "1.0.0"
Remove the git reference
Instead of removing and re-adding, you can do this:
git remote set-url origin git://new.url.here
See this question: How to change the URI (URL) for a remote Git repository?
To remove remote use this:
git remote remove origin