Попытка протолкнуть изменения в репозитории github - PullRequest
1 голос
/ 14 сентября 2011

Я пытаюсь перенести изменения с моего локального компьютера на репозиторий github, и он не работает.

Я зафиксировал локально:

nate@nate-desktop:~/PycharmProjects/TrendFollowing$ git commit -m "Change the underlying data type for time series from a list of dictionary entries to numpy arrays"
# On branch master
# 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:   trendfollowing/breakouts.py
#   modified:   trendfollowing/extrema.py
#   modified:   trendfollowing/test/breakouts_test.py
#   modified:   trendfollowing/test/timeseries_extrema_test.py
#   modified:   trendfollowing/test/timeseries_test.py
#   modified:   trendfollowing/timeseries.py
#
no changes added to commit (use "git add" and/or "git commit -a")

Далее я попытался (просто чтобыбыть уверенным):

nate@nate-desktop:~/PycharmProjects/TrendFollowing$ git remote add origin git@github.com:natereed/trendfollowing.git
fatal: remote origin already exists.

Эта команда была предоставлена ​​github, когда я настраивал репо (я думаю).Я создал тестовый проект и заменил «test» именем моего репо:

nate@nate-desktop:~/PycharmProjects/TrendFollowing$ git push -u origin master
Branch master set up to track remote branch master from origin.
Everything up-to-date

Почему он не выдвигает мои изменения?

EDITED: добавлено пропущенное сообщение об ошибке ("без изменений"добавлено к коммиту ")

1 Ответ

12 голосов
/ 14 сентября 2011

Вы не отправляли. git commit -m будет фиксировать только то, что находится в области подготовки. Либо используйте git commit -a -m, либо используйте git add для добавления файлов в область подготовки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...