Я добавил новый пульт в репо.Затем я выполнил git reset --hard d3d52cee3cf112f30bd4a19611ed34e025d10120
, чтобы принудительно сбросить HEAD
, и это сработало.Я продолжаю работать.После других действий я попытался подтолкнуть мою работу к началу, но она не удалась.Когда я пытаюсь что-то исправить, я создаю конфликты и, прежде чем их исправить, я делаю git rebase --abort
и теряю все, что я сделал между ними.Как мне вернуть все, что я делал до запуска команды git rebase --abort
?
Вот почти все, что я сделал:
mustaq@Dell /opt/lampp/htdocs/wee $ git push origin master
^C
mustaq@Dell /opt/lampp/htdocs/wee $ git remote add origin
https://hellomustaq@bitbucket.org/mobilelili/laravel2.git
fatal: remote origin already exists.
mustaq@Dell /opt/lampp/htdocs/wee $ git remote -v
origin https://sazaldhaka@bitbucket.org/mobilelili/laravelbackend.git
(fetch)
origin https://sazaldhaka@bitbucket.org/mobilelili/laravelbackend.git
(push)
mustaq@Dell /opt/lampp/htdocs/wee $ git remove rm origin
git: 'remove' is not a git command. See 'git --help'.
Did you mean this?
remote
mustaq@Dell /opt/lampp/htdocs/wee $ git remote rm origin
mustaq@Dell /opt/lampp/htdocs/wee $ git remote add origin
https://hellomustaq@bitbucket.org/mobilelili/laravel2.git
mustaq@Dell /opt/lampp/htdocs/wee $ git add .
mustaq@Dell /opt/lampp/htdocs/wee $ git commit -m "draft"
[master 7afb7d9] draft
6 files changed, 238 insertions(+), 89 deletions(-)
create mode 100644 resources/views/table.blade.php
mustaq@Dell /opt/lampp/htdocs/wee $ git status
On branch master
fatal: Could not open file .git/rebase-merge/done for reading: No such
file or directory
mustaq@Dell /opt/lampp/htdocs/wee $ git remote -v
origin https://hellomustaq@bitbucket.org/mobilelili/laravel2.git
(fetch)
origin https://hellomustaq@bitbucket.org/mobilelili/laravel2.git
(push)
mustaq@Dell /opt/lampp/htdocs/wee $ rebase --abort
rebase: command not found
mustaq@Dell /opt/lampp/htdocs/wee $ git rebase --abort
mustaq@Dell /opt/lampp/htdocs/wee $ git status
On branch master
nothing to commit, working directory clean