GIt branchを切り替えられない問題(.DS_Store)
Q&A
Closed
GIt .DS_Storeについて (mac)
ローカル環境ででmasterブランチから枝分かれさせたprocブランチにブランチを切り替える方法。
例)
gitでbranchの学習をしています。
procブランチを作り masterブランチのポインター(HEAD)を一つ進めてprocブランチに切り替えようとしたらエラーが発生しました。
ブランチの切り替えができません。
解決方法を教えて下さい。
発生している問題・エラー
username@MacBook-Pro-2 sports % git checkout proc
error: Your local changes to the following files would be overwritten by checkout:
.DS_Store
Please commit your changes or stash them before you switch branches.
Aborting
例)
username@MacBook-Pro-2 sports % git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: .DS_Store
no changes added to commit (use "git add" and/or "git commit -a")
自分で試したこと
- プロジェクトの作り直し
- .DS_Storeとは何かについて
- 他のサイトを見て試しましたが、前提知識がないため解読不可
0