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.
Asked
Active
Viewed 532 times
7
-
Did you work out a solution? – port5432 Jul 12 '13 at 07:57
-
1check this http://stackoverflow.com/questions/17498033/remove-textmate-git-bundle – Jul 12 '13 at 14:00
-
Solved: http://stackoverflow.com/questions/17590302/textmate-2-alpha-showing-references-for-deleted-files – port5432 Jul 13 '13 at 15:27
-
1Thanks! this works too git add -A . – Jul 13 '13 at 15:46
1 Answers
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
-
1Thanks 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
-
-
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