📌  相关文章
📜  创建存储库、提交和推送 - Shell-Bash 代码示例

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

代码示例1
git init
git add .
git commit -m "commit_id (any name)"
git remote add origin your_repository_link.git
git push -u origin branch_name(master quite often)