Skip to content

Instantly share code, notes, and snippets.

@tommypratama
Last active May 9, 2019 14:27
Show Gist options
  • Save tommypratama/21170803cf44477bcb494a75e07698b4 to your computer and use it in GitHub Desktop.
Save tommypratama/21170803cf44477bcb494a75e07698b4 to your computer and use it in GitHub Desktop.
Working with Large Files on Github

GIT LFS ( Git Large Files )

  1. Install Git LFS

  2. Setting Configuration Git Lfs

    • git lfs install
  3. Tambahkan konfigurasi files besar yang ingin di upload, otomatis menambahkan .gitattributes

    • git lfs track '*csv'
  4. Tracking

    • git lfs track
  5. git add [files]

  6. git commit -m "Add large files"

  7. Cek files apa saja yang di tambahkan

    • git lfs ls-files
  8. git push

Source :

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment