W dniu 29 października 2010 00:31 użytkownik Michał Piotrowski <[email protected]> napisał: > 2010/10/29 Konstantin Kudryashov <[email protected]>: >> Ok. You fork original repo, change something on master, push it to GitHub, >> then do Pull Request & this request gets canceled by original repo owner. >> Then original repo owner push own commits. Now, how'd you revert your >> changes (remember, they already pushed to GitHub) & merge latest original >> repo into your fork, if you doing all this on master? > > Hmm... > > This should be done this way: > > git pull (all latest changes from master) > git branch my_new_feature > do something > git commit > git push my_tree my_new_feature > > send request - please pull: > git pull git://mytree.com/my_tree_path my_new_feature > > Now tree owner pulls this to his master. > > Basicaly this is how Linux developer works.
You can see how it works here http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=summary Regards, Michal -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en
