Please enable JavaScript.
Coggle requires JavaScript to display documents.
Unity Git 版本管理 (Git (what, why, how), Unity 工程实践 (Unity工程设置: (Edit ->…
Unity Git 版本管理
Git
what
why
how
Unity 工程实践
.gitignore 文件
Unity工程设置:
Edit -> Project Settings -> Editor
Version Control : Visible Meta Files
Asset Serialization :Force Text
.gitattributes 用于处理window 和mac的换行符问题
常用操作
放弃修改
未add 未提交 :git checkout .
git clean -XDFgit reset HEAD filename
已经add过 git reset HEAD filename
已经commit: git reset commit_id
分支管理
使用 no fast合并
git stash