Cloud9からgitにfirst commitしたら.c9というCloud9のキャッシュフォルダまでgit commitされちゃうんだよね...
まあここに書いてあることそのままだけど、
git rm --cached .c9/ -r
で再帰的にキャッシュ削除して、
.gitignore
#Ignore all .c9 specific files
/.c9/
vimで、(ってエディタならなんでもいいが)gitignoreに追加して、再度Pushする、ってだけだね。
Go to list of users who liked
More than 3 years have passed since last update.
Cloud9からgitにfirst commitしたら.c9というCloud9のキャッシュフォルダまでgit commitされちゃうんだよね...
まあここに書いてあることそのままだけど、
git rm --cached .c9/ -r
で再帰的にキャッシュ削除して、
#Ignore all .c9 specific files
/.c9/
vimで、(ってエディタならなんでもいいが)gitignoreに追加して、再度Pushする、ってだけだね。
Register as a new user and use Qiita more conveniently
Go to list of users who liked