Textmate 2 Alpha showing references for deleted files -


i know it's alpha product, think setting rather bug. when delete files textmate file manager, file deleted remains in project red 'x' through it. see image below.

i have checked on file system , not there, , have git commited , pushed changes github repo.

any ideas?

enter image description here

edit

cross-posted textmate mailing list. no answers far. http://textmate.1073791.n5.nabble.com/textmate-2-alpha-and-deleting-files-td26669.html

solution

as per danodonovan's suggestion, looked git issues. turns out git status showed files up, , commited.

this did not work:

$ git add . $ git commit -m "message" $ git push origin master 

this did work:

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

i thought -a -m synonymous first set of commands. in case problem solved , not textmate issue rather uncommited deletions, makes sense. thank danodonovan.

do these files show with

$ git status 

? you've found out you'll either have commit removed files individually or use

$ git commit -a -m "comment" 

:-)


Comments