📌  相关文章
📜  如何使用 github 设置项目 - Shell-Bash 代码示例

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

代码示例1
create a project in your GitHub account from the browser
 then use VS CODE or your terminal to clone your project "git clone URL"
 open your project and make any changes:
   1- 'git add .' // for add all file you changed
   2- 'git commit -m "your commit" '
   3- 'git push -u' to push your project