Re: folder naming bug?

2015-02-02 Thread Kevin Coleman
Awesome reply! That makes sense. So basically if I accidentally capitalize a folder name and commit it, I need to be very careful when I correct it. Definitely ran into this problem with my repo and ‘lost’ a few commits before I noticed something was off. -Kevin Coleman > On Feb 3, 2015,

Re: folder naming bug?

2015-02-02 Thread Kevin Coleman
Foo/ nothing added to commit but untracked files present (use "git add" to track) 11:42:48 ~/test (master) $ git add . 11:43:18 ~/test (master +) $ git commit -m "second" [master f78d025] second 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Foo/bar.md

folder naming bug?

2015-02-02 Thread Kevin Coleman
git isn’t tracking folder renames when the case of the letters change, but it will track it if the folder changes names. Is this intentional? Here is an example: 08:51:26 ~/test $ git init Initialized empty Git repository in /Users/kcoleman/test/.git/ 08:51:29 ~/test (master #) $ mkdir main 08: