I am fairly new to Git, and I am having a problem with doing a rebase, where it seems to show a file...
create.sql
and a file
Create.sql
The Create.sql is not staged, and does not physically exist anymore, but I cannot continue with the rebase... when I try git rebase --continue I get the following...
$ git rebase --continue
KeyBlade/KeyBlade.Database/_Pending/Create.sql: needs update
You must edit all merge conflicts and then
mark them as resolved using git add
Git status show the following...
/c/src/git ((c3760e6...)|REBASE)
$ git status
# Not currently on any branch.
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: KeyBlade/KeyBlade.Database/_Pending/create.sql
#
# 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: KeyBlade/KeyBlade.Database/_Pending/Create.sql
#
I am not sure what is going on, but if anyone can shed some light on how I can resolve this, it would be much appreciated.