On Apr 17, 2008, at 12:02 AM, Stephan Hennig wrote:
Receipe:
1. git rebase -i HEAD~3
2. (Editor opens.) "Squash" the last commit.
3. Save and exit editor.
Symptoms:
1. The editor now opens again with an empty file named [EMAIL PROTECTED]
2. After git-rebase is finished there remains a dangling file $@ in
the
working copy.
I cannot reproduce the behavior you describe. Could you send a more
detailed test case? A sequence of simple commands that starts from a
freshly initialized repository would be best. Something like:
git init
echo "a" >>a
git add a
git commit -m "a"
...
Steffen