📜  git remote 和 git clone 之间的区别 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:26.663000             🧑  作者: Mango

代码示例1
echo "# repo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin git@github.com:ameno99/repo.git
git push -u origin master