On Feb 4, 3:52 pm, Yakov <[email protected]> wrote: > By the way, how do I create a separate pull request if I've got one already > (which is not accepted or declined yet)? Do I have to create another branch > and pull it? Does maintainer get any problems with this? (may be if the > changes in different branches are in the same files, which is not the case, > accepting both requests is problematic?) Be sure you do a git commit with your branch. so "git status" says clear. If you don't want to commit you can do a "git stash". That's like a stack to temporarily store your edits, fi you don't want to commit.
Important git checkout master git pull upstream master Where my upstream setting is: https://github.com/TiddlyWiki/tiddlywiki.git So you have the latest master from TiddlyWiki. git checkout -b color-palette and create a pull request for this one. So things are nicely separated. have fun! mario PS: You can try to bump the other pull request -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywikidev?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
