Не понимаю, почему мой коммит на удаленное git-репо не работает.
Так я клонирую ветку из удаленного репо
git clone -b MYBRANCH git@172.27.1.111:/home/my.git
Я изменяю файл с именем test
git diff shows the change
diff --git a/test b/test
index e69de29..9ccc327 100644
--- a/test
+++ b/test
@@ -0,0 +1,3 @@
+changed.
+
+
когда я иду к фиксации, в коммит не вносятся никакие изменения.
git commit -m "changed the test file"
# On branch MCKINLEY
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: test
#
no changes added to commit (use "git add" and/or "git commit -a")
Что мне здесь не хватает?