MacOS Github Push项目 精简版步骤
大白菜教程:小白菜 macOS github提交代码-CSDN博客
步骤1:git init
步骤2:
touch .gitignore 创建ignore文件
open .gitignore 打开ignore文件
编写ignore文件
.idea/ 是文件夹的意思
.git/ 也是自动生成的文件夹 也不上传
.DS_Store 苹果自带的文件也不上传上去
带 / 是文件夹的意思
还有两个很大的权重文件也不上传,给的是相对路径
步骤3:暂存区域
git add .
git status
步骤4:提交
git commit -m "提交显示的字符串 可改"
git log
步骤5:建立远程仓库
步骤6:连接远程仓库 并 查看连接状态
git remote add 【origin 远程仓库的名字 】【url 去远程仓库复制】
git remote -v
步骤7:获取token 免密登录
git remote set-url origin https://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@github.com/dearRongerr/ZhengDaBei-V2.git
步骤8:push上去
git push -u origin main
git push -u 【origin自己之前起远程仓库的名字】 【main】
原文地址:https://blog.csdn.net/2301_77549977/article/details/137840991
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!