Sergio Robledo Arango
Sergio Robledo Arango

Reputation: 177

How to use gitignore on c9.io for adding .c9revisions/ folder

How can i edit gitignore on Cloud9 (c9.io) so i can add the .c9revisions/ folder to it to avoid adding it to my repo on github.

Everytime i use git config --global core.excludesfile ~/.gitignore_global it just does not do anything, can anyone help me out with that, thank you.

Upvotes: 3

Views: 2775

Answers (1)

VonC
VonC

Reputation: 1329692

That Google+ tips mentions:

tip: edit your .gitignore file even though it doesn't show in the "project files":

At the command line, simply enter:

open .gitignore

and see the file display and edit in a new tab.
Save, commit, etc.

From this issue, it looks like Cloud9 is still not ignoring automatically the .c9revisions folder (and the settings.xml, and everything else related to C9).


The OP Sergio Robledo Arango mentions he had to create that file:

https://skitch-img.s3.amazonaws.com/20121001-k6fj6ng8hmrpbj5hn7kcyy6fh2.png

Upvotes: 7

Related Questions