gpt4 book ai didi

github - 在github上上传Zip文件并在上传后解压缩

转载 作者:行者123 更新时间:2023-12-03 16:53:01 33 4
gpt4 key购买 nike

我正在 github 中导入我的项目,因为它的体积很大,需要很长时间。所以我压缩了我的项目并上传到github。

有没有办法在github本身上提取它?我在它的 UI 中看不到任何东西,但是有任何可用的命令或脚本吗?

最佳答案

我遇到了类似的问题,不幸的是,没有(据我所知。)。我能够使用 git 大文件存储将大文件上传到 Github。 ( https://git-lfs.github.com/ )

如果您使用 Linux,请参阅以下说明:

快速安装 git-lfs ( https://packagecloud.io/github/git-lfs/install )

curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash

安装 Git 命令行扩展。
git lfs install

选择您希望 Git LFS 管理的大文件类型的扩展名。对我来说,这是重新训练 inception-v3 模型的“.pb”文件。
git lfs track "*.pb"  #  change "pb" to the extension of your large file.

确保 .gitattributes 被跟踪
git add .gitattributes

最后,只需像往常一样提交并推送到 GitHub。
git add retrain.pb  #  change "retrain.pb" to the name of your large file.
git commit -m "First commit"
git push origin master

或者您可以将所有文件包含在项目目录中。
git add .
git commit -m "First commit"
git push origin master

关于github - 在github上上传Zip文件并在上传后解压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41438167/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com