2013年7月25日 星期四

解決fatal: Not a git repository (or any of the parent directories): .git錯誤

有一次我在開branch的時候:
$ git checkout -b winwu/dev

發生了這個錯誤:
fatal: Not a git repository (or any of the parent directories): .git
不過,起因不是重點,因為就算我今天不是開branch,也有可能發生這個錯誤~


這個錯誤是在告訴你,你所在的目錄,並不是一個git的repository,換句話說,其實就是git在你這個目錄下找不到.git這個目錄,沒有這個目錄,有很多事很難再往下做,因此解決方法就是下git init,git init就是創造一個空的git repo或是重新初始化一個git repo。


$ git init
Reinitialized existing Git repository in h:/your_docs/your_web/.git
下了git init就會重新初始化這個git repo.


4 則留言:

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...