Basically this is for all the large files we need to collaborate on. This includes Illustrator/Photoshop files. Images and pdfs. You need to be in the Creative class to have push access to this repository.
You can test if you have git
and git-lfs
installed by trying to call them in your terminal/cmd.
git --version
git lfs
- Install git - our version control
- Install git lfs - our version control for large files like pictures and Illustrator documents
- Go to https://github.com/Firefund/firefund-lfs/ and copy the git url.
- Download the repository (
git lfs clone https://github.com/Firefund/firefund-lfs.git
) andcd
into the firefund-lfs folder. - Download our files from git Large File Storage (lfs) by writting
git lfs pull
.
You can see which type of files that are in git lfs by writting: git lfs track
.
And you can add new file types by writting: git lfs track "*.filetype"
where filetype is the file extension that you want to
put in git lfs, e.g. *.ai
or *.pdf
.
After the steps in Getting started, you should only need to use normal git commands. That is:
git pull
- download all new commits and git lfs files.git status
- see if you have any files to commit or push.git commit -am "message"
- commit files with a "message".git push
- push files to our server.
Please create a new issue in firefund-lfs, so we can document issues and write them down here. Then post the link in our Slack and maybe add @troldmand or @dotnetcarpenter, so they can help you out.
Moving a git tracked file to git-lfs: https://help.github.com/articles/moving-a-file-in-your-repository-to-git-large-file-storage/