共计 1556 个字符,预计需要花费 4 分钟才能阅读完成。
原文地址: https://shanyue.tech/bug/mac-…
个别开发中在 Mac 上开发程序,并应用 Git 进行版本治理,在应用 React 编写 Component 时,组件名个别倡议首字母大写。
有些同学对 React 组件的文件进行命名时,刚开始是小写,起初为了放弃团队统一,又改成了大写,然而 git 不会发现大小写的变动,此时就出了问题。
再梳理一遍这个逻辑:
- 小明编写组件
button.js
,提交代码 - 小明感觉组件命名不妥,改为
Button.js
- 小明并批改所有文件对它的援用,本地环境运行失常,提交代码
- 构建服务器通过 Git 拉取代码,进行构建,Git 为意识到
button.js
大小写发生变化,所有援用Button.js
的组件产生报错,失败
来重现一下犯错的这个过程:
# 刚开始 test 文件是由内容的
~/Documents/ignorecase-test(master ✔) cat test
hello
# 把 test 文件改成首字母大写的 Test 文件
~/Documents/ignorecase-test(master ✔) mv test Test
# 留神此时 git status 并没有产生扭转
~/Documents/ignorecase-test(master ✔)
~/Documents/ignorecase-test(master ✔) git ls-files
test
~/Documents/ignorecase-test(master ✔) ls
Test
解决方案
通过 git mv
,在 Git 暂存区中再更改一遍文件大小写解决问题
$ git mv test Test
然而批改文件夹时会呈现一些问题:
fatal: renaming ‘dir’ failed: Invalid argument
应用下边这个笨办法批改:
$ git mv dir DirTemp
$ git mv DirTemp Dir
预防计划
那有没有什么预防措施?
Git 默认是疏忽大小写的,如果改成不疏忽大小写是不就能够了?不行,这样会产生更麻烦的问题。
更改为不疏忽大小写
[core]
ignorecase = false
以下是产生的问题:
- 批改文件名时,Git 工作区中一下子减少了两个文件,并且无奈删除
- git rm 删除文件时,工作区的两个文件都被删除
~/Documents/ignorecase-test(master ✔) ls
test
~/Documents/ignorecase-test(master ✔) mv test Test
~/Documents/ignorecase-test(master ✗) ls
Test
~/Documents/ignorecase-test(master ✗) git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
Test
nothing added to commit but untracked files present (use "git add" to track)
~/Documents/ignorecase-test(master ✗) git add -A
~/Documents/ignorecase-test(master ✗) git ls-files
Test
test
~/Documents/ignorecase-test(master ✗) git rm test
rm 'test'
~/Documents/ignorecase-test(master ✗) git add -A
~/Documents/ignorecase-test(master ✗) git ls-files
~/Documents/ignorecase-test(master ✗)
总结
应用 git mv -f
和 mv
同时更改文件名,防止本地文件系统与仓库中代码不统一。
正文完