一、安装
#当前操作系统为centos7 [root@localhost ~]#curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash [root@localhost ~]# yum install git-lfs [root@localhost ~]# git lfs install [root@localhost ~]# git lfs -v git-lfs/3.3.0 (GitHub; linux amd64; go 1.19.3; git 77deabdf)
二、代码库启用LFS
[root@localhost ~]# cd /mnt/ [root@localhost mnt]# git clone [email protected]:pc-xvista.git [root@localhost pc-xvista]# git lfs track "*.mp4" #将MP4文件使用LFS管理,此处的指令并不会对已存在的MP4文件进行管理,如果需要管理已存在的MP4文件请参考下放使用参考链接中的2.2章节 Tracking "*.mp4"
三、上传mp4文件
[root@localhost images]# git add video_new.mp4 [root@localhost images]# git add video_new.mp4 [root@localhost images]# git commit -m "LFS manager MP4" [root@localhost images]# git push Uploading LFS objects: 100% (1/1), 95 MB | 4.3 MB/s, done. #可以看到upload LFS done字样 .....
四、仓库验证
可以看到video_new.mp4已经被标记使用LFS管理了
使用参考地址:https://help.aliyun.com/document_detail/321367.html
标签:git,lfs,托管,mp4,Git,LFS,root,localhost From: https://www.cnblogs.com/panwenbin-logs/p/16975443.html