Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git flow start/finish reports unstaged changes when there are none to commit or push #81

Open
devlins opened this issue Nov 23, 2010 · 24 comments

Comments

@devlins
Copy link

devlins commented Nov 23, 2010

Sometimes when performing git flow start or finish, git flow will report:

fatal: Working tree contains unstaged changes. Aborting.

There is however nothing to commit and nothing to pull or push to/from the remote. The working copy is up to date.

I have had to work around this issue by creating false commits of changes to a "readme.txt" file in order to perform these steps, but this is tedious. Is there another command that I can use to see what is blocking the git flow start/finish command?

@nvie
Copy link
Owner

nvie commented Nov 26, 2010

Please provide a replay of your commands that lead to this issue. That would definitely make it easier to analyse what causes this issue. Try to keep it as short as possible.

@albohlabs
Copy link

This could happen when you delete files and won't commit. Check the staged files with git diff --cached and commit.

@vinitkumar
Copy link

There is not output with git diff --cached . Any idea, how to resolve the issue?

@bekas
Copy link

bekas commented Dec 1, 2012

i have a same problem. Do you find any decision?

@vinitkumar
Copy link

The easiest solution is to commit the changes ,delete the repo and re clone it.

@bekas
Copy link

bekas commented Dec 2, 2012

thanks a lot

@norbert-gaulia
Copy link

Most of the time bug is hapening with eGit on Eclipse based ide's, when i use git bash or tortoise git this error does not appear

@rubyrider
Copy link

git reset --hard origin/master can save your life!

@georgezlatev
Copy link

It is very strange however executing:
git status
and repeating the command works as a fix in my environment.:-)

@ghost
Copy link

ghost commented Aug 26, 2014

we are having the same effect like @georgezlatev working on MAC OS X with intellij Idea 13. Seems that git-flow does not register a commit in a timely fashion ;-)

Will this be fixed?

@ghost
Copy link

ghost commented Oct 21, 2014

I only get this error when trying to git flow finish from a subdirectory. It works from the repos root directory.
Cheers guys

@WillettLuke
Copy link

Appreciate this thread is old but i'm sure others will still be getting this error and will find this thread. I am using SourceTree and was getting this error. I managed to fix this by right clicking on my feature branch and then merging into develop/origin. I was than able to push my committed changes and delete the feature branch.

@ghost
Copy link

ghost commented Jan 12, 2015

best Option would be if the scripts execute a git status before trying to finish a feature:

if output=$(git status --porcelain) && [ -z "$output" ]; then

finish

else

normal error

fi

@fspreng
Copy link

fspreng commented Jan 13, 2015

Is this also an issue when finishing a release/hotfix branch?

@ghost
Copy link

ghost commented Jan 13, 2015

yes. with Intellj-Gitflow Plugin and in Bash.
when i run a 'git status' in bash and finish feature/release/hotfix it works.

@DonnaLea
Copy link

In SourceTree I was getting this error (I was trying to finish a current feature) when SourceTree showed there were no changes. It wasn't until I switched to the Terminal and did a git status it showed a typechange to a file that hadn't been committed (because it didn't show in SourceTree). The changes I had made in the project was a replacement of two .framework files, so a lot of internal changes to those .framework files occurred by the looks of it. Ultimately the error from SourceTree was in fact correct, but I'm disappointed that SourceTree could not show me this change that was stopping me from finishing my feature branch :(

@dragGH102
Copy link

I confirm git status for me helps to see what the unstages changes are

@bedrin
Copy link

bedrin commented Dec 6, 2015

git reset --hard works for me in such cases

@srajaiah
Copy link

git reset --hard worked for me as git status did not display any uncommitted changes.

@Lapinou42
Copy link

Just do these commands in your terminal:

git status
git add .
git status
git commit -m 'Commit typechanges'

It works well for me ;)

@baidai
Copy link

baidai commented Apr 16, 2019

I had the same problem. I was able to commit the feature branch but not do 'feature finish'. I switched to the root directory ran git flow feature finish , and it worked.

@SidneyMachara
Copy link

First confirm that you are running git commands at the root of you project.

@amper01
Copy link

amper01 commented Apr 6, 2022

removing index.lock solved the problem for me. But I've committed all changes before, so the code was up to date. It seems my solution looks well but not for all cases.

from the console:
**_fatal: Unable to create 'project/.git/index.lock': File exists.

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue_**

@meiadnoushadi
Copy link

meiadnoushadi commented Jan 4, 2023

  the best plane >>>
  1-remove branch   => .git/refs/heads  => rm -rf <nameBranch>
  2-remove index.lock and COMMIT_EDITMSG (maybe not found) => rm -f <name>
  3-and switch other branch and changes save in stash
  4-continue process git in project ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests