博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
install git-lfs on ubuntu and use it
阅读量:4040 次
发布时间:2019-05-24

本文共 616 字,大约阅读时间需要 2 分钟。

Ubuntu

$ curl -s | sudo bash

sudo apt-get install git-lfs

After installing, you can install using:

git lfs install

Getting Started

Download and install the Git command line extension. You only have to set up Git LFS once.

git lfs install

Select the file types you’d like Git LFS to manage (or directly edit your .gitattributes). You can configure additional file extensions at anytime.

git lfs track “*.psd”

Make sure .gitattributes is tracked

git add .gitattributes

There is no step three. Just commit and push to GitHub as you normally would.

git add file.psd

git commit -m “Add design file”
git push origin master

转载地址:http://koxdi.baihongyu.com/

你可能感兴趣的文章
git 常用命令
查看>>
linux位操作API
查看>>
uboot.lds文件分析
查看>>
uboot start.s文件分析
查看>>
没有路由器的情况下,开发板,虚拟机Ubuntu,win10主机,三者也可以ping通
查看>>
本地服务方式搭建etcd集群
查看>>
安装k8s Master高可用集群
查看>>
忽略图片透明区域的事件(Flex)
查看>>
忽略图片透明区域的事件(Flex)
查看>>
AS3 Flex基础知识100条
查看>>
Flex动态获取flash资源库文件
查看>>
flex中设置Label标签文字的自动换行
查看>>
Flex 中的元数据标签
查看>>
flex4 中创建自定义弹出窗口
查看>>
01Java基础语法-13. if分支语句的灵活使用
查看>>
01Java基础语法-15.for循环结构
查看>>
01Java基础语法-16. while循环结构
查看>>
01Java基础语法-17. do..while循环结构
查看>>
01Java基础语法-18. 各种循环语句的区别和应用场景
查看>>
01Java基础语法-19. 循环跳转控制语句
查看>>