[root@localhost ~]# cd /mnt/
[root@localhost mnt]# git clone git@codeup.aliyun.com:pc-xvista.git
[root@localhost mnt]# cd pc-xvista
[root@localhost pc-xvista]# git lfs track "*.mp4" #将MP4文件使用LFS管理,此处的指令并不会对已存在的MP4文件进行管理,如果需要管理已存在的MP4文件请参考下放使用参考链接中的2.2章节
Tracking "*.mp4"
[root@localhost pc-xvista]# git lfs track #查看当前 track规则
*.mp4 (.gitattributes)
Listing excluded patterns
[root@localhost pc-xvista]# cd www.xvista.com/html/images
[root@localhost images]# git lfs track "*.mp4" #track规则可以有多个,并且可以更加具体路径添加
Listing tracked patterns
www.xvista.com/html/images/*.mp4 (www.xvista.com/html/images/.gitattributes)
*.mp4 (.gitattributes)
Listing excluded patterns
[root@localhost images]# git add .gitattributes #一定要把 .gitattributes文件提交并上传,并且如果有多个需要都提交,当前提交的为 image下,而不是项目下,按需
[root@localhost images]# git commit -m "Add \"*.MP4\" LFS config "
|