How can I show dotfiles in Textmate 2?

Quick solution Move the focus to the file browser (⌥⌘⇥) and show invisibles (⌥⌘i)(key names: option/alt+command/windows+i/eye). All invisible files will appear in the file browser. Press ⌥⌘i again to hide them. Permanent solution If you want to always show some dotfiles (for instance .htaccess), you can either add them in Preferences > Projects > Include … Read more

How to show hidden files (dotfiles) with windows powershell [duplicate]

In order to show such hidden files, use the -Force parameter for the Get-Childitem command. Get-ChildItem . -Force You also can use its aliases, with -Force dir -Force ls -Force gci -Force Also: if you want to delete fully delete e.g. the .git Directory, you may use Delete-Item .\.git -Force EDIT According to Get-Help Get-ChildItem … Read more

What’s the difference between Git ignoring directory and directory/*?

There’re differences among www, www/ and www/*. Basically from the documentation and my own tests, www find a match with a file or a directory, www/ only matches a directory, while www/* matches directories and files inside www. I’ll only discuss on the differences between www/ and www/* here, since the differences between www and … Read more