7

This might be a silly question, but can we prevent the displaying of old references in the project list view? I see files that were deleted but still show with an "X" icon. I wish I could attach a screenshot.

Sabuncu
  • 5,095
  • 5
  • 55
  • 89

1 Answers1

4

As per the comments, this is a git issue, and not a textmate issue.

Try this:

$ git commit -a -m "git comment"
$ git push origin master

According to the OP, this will also work:

$ git add -A

Reference: Textmate 2 Alpha showing references for deleted files

Community
  • 1
  • 1
port5432
  • 5,889
  • 10
  • 60
  • 97
  • 1
    Thanks it's "git add -A . " but again what if you don't use git hub for other stuff? there has to be something. –  Jul 13 '13 at 16:10
  • I think it won't show up as an "X" if there is no external git repo. – port5432 Jul 15 '13 at 13:46
  • This is totally a Textmate issue, considering Textmate is showing files that don't exist and is explicitly and intentionally interfacing with git in order to do so, to the potential detriment of usability. Just because it can be traced back to the git repo doesn't make it not a Textmate issue. – Christopher Swasey Nov 17 '15 at 13:06