Compare commits

...

2 commits

Author SHA1 Message Date
Mark Joshwel 95b0715113 docs: add quickstart command 2024-07-02 05:23:02 +08:00
Mark Joshwel 19f43691c3 qs: update script 2024-07-02 05:22:46 +08:00
2 changed files with 7 additions and 27 deletions

View file

@ -1,5 +1,11 @@
# 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,30 +1,4 @@
# 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_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"