Git Basics Cheatsheet
Init
This command creates an empty Git repository or reinitializes an existing one (if applicable)
git init
Set origin
The below command is used to add a new remote (URL for your git repository) :
git remote add origin git@github.com:User/User...
raksha3.hashnode.dev2 min read