Fix .gitignore Delete a bunch of old irrelevant paths as well as some mysterious ones after splitting out cordova-lib.
Other ignore mechanisms that can be used for ignoring files specific to your workflow are: 1) Add the files to .git/info/exclude which is a special checkout-local file that works just like .gitignore but does not show up in "git status" since it's in the .git folder. 2) Edit ~/.gitignore_global and then run git config --global core.excludesfile ~/.gitignore_global See http://stackoverflow.com/questions/10176875/add-gitignore-to-gitignore Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/89a3ad86 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/89a3ad86 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/89a3ad86 Branch: refs/heads/master Commit: 89a3ad866be7815015056f6b166b6b956e04371c Parents: 8fa0b9a Author: Mark Koudritsky <[email protected]> Authored: Tue Apr 29 18:07:29 2014 -0400 Committer: Mark Koudritsky <[email protected]> Committed: Wed Apr 30 18:18:16 2014 -0400 ---------------------------------------------------------------------- cordova-lib/.gitignore | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/89a3ad86/cordova-lib/.gitignore ---------------------------------------------------------------------- diff --git a/cordova-lib/.gitignore b/cordova-lib/.gitignore index 3e180c5..7329a38 100644 --- a/cordova-lib/.gitignore +++ b/cordova-lib/.gitignore @@ -2,17 +2,8 @@ node_modules npm-debug.log temp .DS_Store -spec/fixtures/projects/native -spec/fixtures/projects/cordova -lib/cordova-android/framework/bin -lib/cordova-android/framework/gen -lib/cordova-android/framework/local.properties -lib/cordova-wp7/example -lib/cordova-wp8/example +spec-cordova/fixtures/projects/native +spec-cordova/fixtures/projects/cordova .idea/* -spec/fixtures/* .gitcore -*.jar -spec_tmp -# avoid npm pack issues -.gitignore +*.jar \ No newline at end of file
