![]() |
Dan , Micheus ... how to re-submit pull-request ? - Printable Version +- Wings 3D Development Forum (https://www.wings3d.com/forum) +-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1) +--- Forum: Programming (https://www.wings3d.com/forum/forumdisplay.php?fid=7) +--- Thread: Dan , Micheus ... how to re-submit pull-request ? (/showthread.php?tid=1127) Pages:
1
2
|
Dan , Micheus ... how to re-submit pull-request ? - ggaliens - 03-29-2015 Dan , Micheus ... how to re-submit pull-request ? Is there a really simple way to do this ? Shamefully, I have been deleting a branch ... and then re-making it in order to do a correction. Of course, I would like to do better than this. Any tips would be appreciated. Now I'll go look up some git commands. RE: Dan , Micheus ... how to re-submit pull-request ? - ggaliens - 03-29-2015 Code: ## This file is NAMED ... makefile.git Above makefile is just enumerating the sort of GIT commands I'm using. I got in trouble for showing this once before ;-) but I'm not ashamed for trying. There have got to be some glaring issues with the above that are making things harder for me. The only part from above that seems 100% dysfunctional is the push-more-sandbox commands. But ... what do I know. I need some help with GIT. Have never been real comfortable with it. RE: Dan , Micheus ... how to re-submit pull-request ? - micheus - 03-29-2015 (03-29-2015, 04:26 PM)ggaliens Wrote: ... how to re-submit pull-request ?Once the pull request is much more like a reference to your branch, I don't see any problem in you just force a new push over it. Something important to think about is: your code must be updated/synchronized with the master branch you want it merged. So, update an old pull request can be needed to get it merged to the current master branch. That's my thought and how I would proceed. I don't know anything about makefile.git script. I run all git commands by hand - it's my way to learn them. RE: Dan , Micheus ... how to re-submit pull-request ? - micheus - 03-29-2015 Just now I saw your comment at github. Code: $ "/c/program files (x86)/git/bin/git" push origin ggaliens/sc-build-colors I believe your problem is related to the SSH keys (the id_rsa files). Check your SSH Key at github. RE: Dan , Micheus ... how to re-submit pull-request ? - ggaliens - 03-29-2015 It could be that Micheus ... but only if some of the commands ran a-foul and locked me out somehow. I hope my actions didn't "invalidate" my current key ... since the good part of having the commands listed is ... they are suppose to run the same way every time (state machine acts in predicable way with luck). RE: Dan , Micheus ... how to re-submit pull-request ? - micheus - 03-29-2015 Create a new Key is not a big deal. I have one for each environment I created (MinGW, Ubuntu and Mint on VM). You can create a new one and replace the current ones to try if that is the problem (backup them if you want). RE: Dan , Micheus ... how to re-submit pull-request ? - ggaliens - 03-29-2015 No ... that's not the problem. I understand why you think that from googling the error messege. But it is not the problem. For example ... I can rerun same git commands if for example I delete the branck at GITHUB. Effectively redo. This means it is not the SSH KEY as the problem. Thanks for the thoughts though. It more likely means ... I just don't have permission for the git command because of the branch to master sharing rules (ie I'm messing up the commands). RE: Dan , Micheus ... how to re-submit pull-request ? - micheus - 03-29-2015 Ok. It seems you have already fixed that by deleting the old branch sc-build-colors and creating a new one sc-build-colors-take2. RE: Dan , Micheus ... how to re-submit pull-request ? - ggaliens - 03-30-2015 Yeah. But that's not at all what I want to do. That's lame behavior for me. I want to learn to do better with GIT. I have a mental block for sure when it comes to git. RE: Dan , Micheus ... how to re-submit pull-request ? - micheus - 03-30-2015 Well, everything related to git I have used I have shared in the proper thread - it's there as a reference. Something I learned is that I don't need afraid of mess up my branches. When I want do that for any kind of test to learn about the git commands, I just backup the worked files before. ![]() There is a graphic UI for git in case you want to try. Even the installed version of git under MinGW offers us the gitk that is also a visual UI with options to manage the branches. |