Try:
git rm "./\033[A.tex"
That will look in your current directory.
Or try typing ./\033 then pressing tab to autocomplete in some shells.
samoz
2009-07-31 12:49:19
Try:
git rm "./\033[A.tex"
That will look in your current directory.
Or try typing ./\033 then pressing tab to autocomplete in some shells.
Does any of the following work?
git rm "\\033[A.tex"
git rm "\*A.tex" (assuming this pattern matches no other files)
git rm "*A.tex" (same assumption)
It will work this way for sure.
git rm \\033\[A.tex
No assumption needed. There is a pattern followed to identify such challenging names(can't find where its documented). But this will work.
EDIT
For more chalenging name
git rm "\"\\033[A.tex\""