commit f3251cc72c71c5b3410ac0cd8c6c64860a9497f2 Author: system Date: Mon Aug 26 10:44:09 2024 +0800 888888 diff --git a/新建文本文档 (3).h5 b/新建文本文档 (3).h5 new file mode 100644 index 0000000..443aeb1 --- /dev/null +++ b/新建文本文档 (3).h5 @@ -0,0 +1,23 @@ +使用LFS进行大文件上传 +lfs下载地址:https://git-lfs.com/ +git lfs install +初始化本地仓库 +gii init +添加远程仓库 +git remote add origin http://10.0.101.71:3000/wsg123/Test-wsg-001.git +切换到 main 分支(如果还没有 main 分支,先创建它) +git checkout -b main +跟踪大文件 +git lfs track ".zip" 文件后缀 +添加并提交本地文件 +git add . +git commit -m "你的提交信息" +从远程仓库获取最新的更改 +git fetch origin +强制合并不相关的历史记录 +git merge origin/main --allow-unrelated-histories +配置Git用户名和邮箱 +git config --global user.name "Your Name" +git config --global user.email you@example.com +将本地 main 分支推送到远程仓库 +git push -u origin main \ No newline at end of file