
- #Git lfs not pulling files install
- #Git lfs not pulling files password
- #Git lfs not pulling files download
#Git lfs not pulling files password
The username is your development forum email and the password is the LFS token that was created in the previous step. Now when you do a git push after modifying some LFS tracked file (before committing make sure that the big files are listed in the command git lfs ls-files) you will be asked for an username and a password. Then the token is either visible immediately or can be made visible by pressing the button to show the LFS token.

This will take you to where there is a button called "Generate Git LFS Token", press it. To do so first login there using your development forum account: Īfter logging in click your email under the top navigation.
#Git lfs not pulling files download
If the only thing you want to download are the assets, then from that linked page you only need git and git-lfs, you can ignore the other tools if you don't want to compile the game.įor writing (sending new file) to the Git LFS repo you need to create a token to access LFS in ThriveDevCenter.
#Git lfs not pulling files install
So cloning Thrive and pulling the asset files does not need any login details.įor git lfs pull to work you must first install Git LFS. The LFS repository is configured to not need any login details when reading data. These are stored with Git LFS to keep our main repo from bloating and slowing things down. Thrive includes a lot of big asset files that are needed to run the game. Not removed by default.Git LFS is a tool for making Git repositories work well with big, binary files. Untracked directory is managed by a different Git repository, it is Remove untracked directories in addition to untracked files. This may be useful to rebuildĮverything from scratch, but keep manually created files.ĭon’t actually remove anything, just show what would be done. With git reset) to create a pristine working directory to test a clean This can be used (possibly in conjunction This allows removing all untracked files, gitignore (perĭirectory) and $GIT_DIR/info/exclude, but do still use the ignore

If the Git configuration variable clean.requireForce is not set toįalse, git clean will refuse to run unless given -f, -n or -i.ĭon’t use the standard ignore rules read from. If clean.requireForce is set to "true" (the default) in your configuration, one needs to specify -f otherwise nothing will actually happen.Īgain see the git-clean docs for more information. Note the case difference on the X for the two latter commands.

In gitconfig, set lfs.fetchinclude and lfs.fetchexclude to comma-separated lists Time you spend downloading things you do not use. Paths of the repo, and/or to exclude certain paths of the repo, to reduce the You can configure Git LFS to only fetch objects to satisfy references in certain

I ran into this man page, I didn't tested but hopefully it helps: INCLUDE AND EXCLUDE
