difference between git remote and git clone code example
Example: difference between git remote and git clone
echo "# repo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin [email protected]:ameno99/repo.git
git push -u origin master