common/README.md

50 lines
1.2 KiB
Markdown
Raw Normal View History

2024-06-06 07:59:53 +00:00
# git lfs files
2024-06-05 02:51:25 +00:00
2024-06-06 08:01:04 +00:00
## file placements
2024-06-05 02:51:25 +00:00
2024-06-06 07:59:53 +00:00
- for Game-only projects
2024-06-05 02:51:25 +00:00
2024-06-06 07:59:53 +00:00
```text
Game (Unity) Repository Folder
├── .git/
├── .gitignore (from Unity.gitignore)
├── .gitattributes (from Unity.gitattributes)
└── ...
```
2024-06-05 02:51:25 +00:00
2024-06-06 07:59:53 +00:00
- for Modelling-only projects
```text
Modelling (Maya / Z Brush / Substance Painter) Repository Folder
├── .git/
├── .gitattributes (from Modelling.gitattributes)
└── ...
```
- for Shared projects
```text
Shared Repository (a la Integrated Project)
├── .git/
├── Game
│ ├── .gitignore (from Unity.gitignore)
│ ├── .gitattributes (from Unity.gitattributes)
│ └── ...
├── Modelling
2024-06-06 08:01:04 +00:00
│ ├── .gitattributes (from Modelling.gitattributes)
2024-06-06 07:59:53 +00:00
│ └── ...
└── ...
```
## setting up lfs
```shell
# init git lfs
2024-06-05 02:51:25 +00:00
git lfs install
2024-06-06 07:59:53 +00:00
# optional, for multi-user/multi-collaborator repositories
2024-06-05 02:51:25 +00:00
git config lfs.https://forge.joshwel.co/<username>/<repository>.git/info/lfs.locksverify true
```
2024-06-06 07:59:53 +00:00
also see the forge's [Resources](https://poissonparler.notion.site/La-Forge-du-Poisson-Resources-d6d6b694a92b4211ac7496dec2b8689d) page for more info on setting up LFS projects