Stop tracking and ignore changes to a file in eGit using Momentics IDE

1.4k Views Asked by At

I'm using egit in Momentics (the eclipse based IDE for developing Blackberry 10 apps).

I want to ignore some file from being tracked witout deleting them locally. In other posts (e.g. this) I found answers to use "untrack" but this seems not to be available in egit under Momentics (or it has been removed meanwhile).

There is no Untrack at all available.

Here is the context menu from the Project in EGIT perspective context menu in EGit perspective

The context menu in C perspective shows even less options context menu C perspective

I'm using:

  • Momentics IDE for Blackberry V:2.1 Build 201406041640
  • Eclipse Platform V: 4.3.2.v20140221-1852 Build: M20140221-1700
  • EGIT V:3.4.1.201406201815-r
1

There are 1 best solutions below

0
On

First: Forget about egit, at least until it becomes more robust and error-free. I have experienced so many time-wasting issues and lack-of-accommodation with that tool, and in fact it has numerous documented defects. If you like to use a GUI for git (like I do), use Git Extensions instead.

Second: You're supposed to use an .ignore file to prevent items from being tracked; here are a few samples.

Finally: If you need to untrack things that have already been committed, you'll probably need to drop to the command line anyway: Commit your changes, then in Git Bash type

git rm -r --cached "path/to/foo/"

Then I think you'll need to commit again.

From a closely-related topic here at stackoverflow: Untrack and stop tracking files in git