forked from BourgeoisGames/sampleUnityProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepo-setup-instructions.txt
More file actions
23 lines (16 loc) · 870 Bytes
/
repo-setup-instructions.txt
File metadata and controls
23 lines (16 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
before working on the project, you have a little bit of setup you'll need to do:
-- install git lfs (https://git-lfs.github.com/)
-- add the following you your git config at ".git/config" so setup unity smartMerge tool for merg conflicts:
[mergetool "unity_yaml"]
cmd = 'C:\Program Files\Unity\Editor\Data\Tools\UnityYAMLMerge.exe' merge -p "$BASE" "$REMOTE" "$LOCAL" "$MERGED"
trustExitCode = false
keepTemporaries = true
keepBackup = false
[merge]
tool = unity_yaml
- you can run this tool with the command "git mergetool", it will hopefully resolve conflicts.
-- verify the following settings are correct in your unity editor after opening the project:
- go to Edit > Project Settings > Editor
- in the inspector:
- set "Version Control" > "Mode" to "Visible Meta Files"
- set "Asset Serialization" > "Mode" to "Force Text"