On Sun, Feb 13, 2011 at 6:28 AM, Patrick Schmidt <p.l.schm...@gmx.de> wrote:
>
> I tried to upload three patches to rietveld. I got the message:
>
> pls@pls:~/lilypond-git$ git pull -r
> Current branch master is up to date.
> pls@pls:~/lilypond-git$ git cl upload origin/master
> Cannot upload with a dirty tree.  You must commit locally first.
>
> What do I have to do?

This means, in git terminology, that you have "unstaged changes" in
your local git tree.

Run `git status' to see what files are included in the unstaged
changes, and run `git diff' to see what the specific changes are.

If you want to submit these unstaged changes to Rietveld, commit them
first before running the `git cl' command.  If not, run `git stash' to
temporarily stow the changes away.  (A `git stash pop' can restore the
stowed-away changes.)

Hope this helps!

Thanks,
Patrick

_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to