Compare commits

..

No commits in common. "95b07151139522e3df2e31231d6b49a9c91abf50" and "2dbe573b70d8b789df1dc468cb50a4232e2c4f95" have entirely different histories.

2 changed files with 27 additions and 7 deletions

View file

@ -1,11 +1,5 @@
# git lfs files
## quickstart script
```
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser; irm "https://forge.joshwel.co/mark/common/raw/branch/main/repoquickset.ps1" | iex
```
## file placements
- for Game-only projects

View file

@ -1,4 +1,30 @@
$GIT_IGNR_UNITY="https://forge.joshwel.co/mark/common/raw/branch/main/Unity.gitignore"
# common setup script for forge repositories
# structure:
#
# Shared Repository/Monorepository (a la Integrated Project)
# ├── .git/
# ├── Game
# │ ├── .gitignore (from Unity.gitignore)
# │ ├── .gitattributes (from Unity.gitattributes)
# │ └── ...
# ├── Modelling
# │ ├── .gitattributes (from Modelling.gitattributes)
# │ └── ...
# └── ...
#
# Game (Unity) Repository Folder
# ├── .git/
# ├── .gitignore (from Unity.gitignore)
# ├── .gitattributes (from Unity.gitattributes)
# └── ...
#
# Modelling (Maya / Z Brush / Substance Painter) Repository Folder
# ├── .git/
# ├── .gitattributes (from Modelling.gitattributes)
# └── ...
# git files
$GIT_IGNR_UNITY="https://forge.joshwel.co/mark/common/raw/branch/main/Unity.gitignore"
$GIT_ATTR_UNITY="https://forge.joshwel.co/mark/common/raw/branch/main/Unity.gitattributes"
$GIT_ATTR_MODEL="https://forge.joshwel.co/mark/common/raw/branch/main/Modelling.gitattributes"
$GIT_ATTR_GENRC="https://forge.joshwel.co/mark/common/raw/branch/main/Generic.gitattributes"