Невозможно сделать коммит - PullRequest
0 голосов
/ 12 октября 2018

У меня есть эти файлы, и я хочу отправить их на github.

enter image description here

Естественно, я выполнил следующие команды

git add *\*.py 
git commit -m "cleaning"
git push origin master

Однако это привело к следующей ошибке.

Abrahams-MBP:text_classification abrahammathew$ cd /Users/abrahammathew/Desktop/carecloud/carecloud_doc_extraction/text_classification/ 
Abrahams-MBP:text_classification abrahammathew$ git add *\*.py 
Abrahams-MBP:text_classification abrahammathew$ git status
rebase in progress; onto 149cf03
You are currently rebasing branch 'master' on '149cf03'.
  (all conflicts fixed: run "git rebase --continue")

nothing to commit, working directory clean
Abrahams-MBP:text_classification abrahammathew$ git commit -m "cleaning"
rebase in progress; onto 149cf03
You are currently rebasing branch 'master' on '149cf03'.

nothing to commit, working directory clean
Abrahams-MBP:text_classification abrahammathew$ git status
rebase in progress; onto 149cf03
You are currently rebasing branch 'master' on '149cf03'.
  (all conflicts fixed: run "git rebase --continue")

nothing to commit, working directory clean
Abrahams-MBP:text_classification abrahammathew$ git push origin master
To https://github.com/springml/carecloud_doc_extraction.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/springml/carecloud_doc_extraction.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Abrahams-MBP:text_classification abrahammathew$ 

Кажется, я не могу даже создать локальный коммит этих файлов.

Как я могу заставить это работать?

Ответы [ 2 ]

0 голосов
/ 12 октября 2018

Поскольку вы находитесь в середине перебазирования, вы можете либо продолжить его с git rebase --continue, либо полностью отменить его с git rebase --abort.После этого вы можете добавлять, фиксировать и отправлять файлы.

0 голосов
/ 12 октября 2018

You are currently rebasing branch 'master' on '149cf03'. (all conflicts fixed: run "git rebase --continue")

Это, довольно сильно :), предполагает, что вы находитесь в середине перебазирования.

Вам нужно закончить ребазирование (git rebase --continue) или прервать его, и тогда вы должны начать казаться нормальным.

Вы не должны толкаться в середине перебазировки.

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