在 git push
時出現如下錯誤狀況
modified content, untracked content
解決方式
到出現此狀況的資料目錄下,輸入
git rm -rf --cached <untrackfile>
然後,重新執行上傳步驟
git add .
或是
git add <untrackfile>
在 git push
時出現如下錯誤狀況
modified content, untracked content
到出現此狀況的資料目錄下,輸入
git rm -rf --cached <untrackfile>
然後,重新執行上傳步驟
git add .
或是
git add <untrackfile>