Это может быть нехватка кофе, но я только что выпил, поэтому я все равно спрошу.
Вот буквальный разговор, который я имел с моим терминалом, с разрывами строк для удобства чтения.
$ ls -la
total 28
drwxr-xr-x 5 thomas thomas 4096 2010-10-02 09:32 .
drwxr-xr-x 153 thomas thomas 12288 2010-10-02 09:30 ..
drwxr-xr-x 5 thomas thomas 4096 2010-10-02 09:31 content
drwxr-xr-x 3 thomas thomas 4096 2010-10-02 09:31 template
drwxr-xr-x 7 thomas thomas 4096 2010-10-02 09:31 typely
$ git --version
git version 1.7.0.4
$ git init .
Initialized empty Git repository in /home/thomas/typely/.git/
$ git add -A
$ git st
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: content
# new file: template
# new file: typely
#
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: content
# modified: typely
#
Но это все каталоги! Кроме того, они не были изменены с тех пор, как я их добавил.
Подумав, что с каталогами что-то не так, я попытался cp -r
в новый каталог, но происходит то же самое. Если я git add
подаю файлы напрямую, git не жалуется, но они не отображаются и в git st
.
Я схожу с ума?