正在加载今日诗词....
📌 Powered by Obsidian Digital Garden and Vercel
载入天数...载入时分秒... 总访问量次 🎉
载入天数...载入时分秒... 总访问量次 🎉
git init
git remote add origin <your-remote-repository-url>
验证是否成功
git remote -v
如果你想将本地分支重命名为 main
,可以使用以下命令:
git branch -M main
git lfs install
git lfs track "*.filetype"
git add .gitattributes
git add <large-file>
git commit -m "Track large files with Git LFS"
如果将大文件已经添加到暂存区,使用上述命令后还会出现问题,应当及时从 Git 的提交历史中移除这些大文件,然后重新通过 Git LFS 跟踪它们。
git rm --cached path
git commit -m "Remove large files from Git history and track with LFS"
git filter-branch --force --index-filter \
'git rm --cached --ignore-unmatch 文件路径 \
--prune-empty --tag-name-filter cat -- --all
然后重新使用将大文件添加到 LFS
将其余文件添加到暂存区
git add .
git commit -m "Initial commit"
git push -u -f origin main