Create and Clone Repos
Create
Init a local repo
git initClone
Clone on a folder with the repo name
git clone https://github.com/GonGarce/git-basics.gitClone on a folder with a custom name
git clone https://github.com/GonGarce/git-basics.git my-repoBasics of remotes
Add a new remote repository
git remote add origin https://github.com/GonGarce/git-basics.gitSee all remote repositories
git remote -v