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
Share on X(Twitter)
Share on Facebook
More than 5 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