mac如何在终端使用git将源码上传github
2024-11-22 18:32:41
1.去github上创建自己的Repository
2.在mac中选择一个文件夹将github上的源码clone下来
2.1 git init
2.2 git clone https://github.com/yourproject/yourproject.git
3.将更新后的源码提交到github上
3.1 git add *
3.2 git commit -m”<注释>”
3.3 git push origin master