📌  相关文章
📜  将现有代码 git 到新存储库 - Shell-Bash 代码示例

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

代码示例1
cd myapp
git init
git remote add origin https://github.com/myname/myapp.git
git add .
git commit -m "Initial commit"
git push -u origin master