Skip to content

CLI ‐ Git | Node

Full Stack edited this page Jul 10, 2025 · 3 revisions

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 "your@email.com"

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?](https://stackoverflow.com/questions/2432764/how-to-change-a-remote-repository-uri-using-git)

To remove remote use this:

git remote remove origin



Clone this wiki locally