-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SCCP connection establishment and release (with fixes) #251
SCCP connection establishment and release (with fixes) #251
Conversation
Hello @vmykhailiuk I tried to add your commits from the PR on the top of our branch "sccp-co" and failed (because of conflicts). Your latest commit in the mentioned branch is "SCCP connection reset fix". Can we check it ? |
Hello @vmykhailiuk It is not clear for me how to merge it easily... Can you provide a new PR with a proper set of changing ? |
@vetss |
To clarify, it could be done with following commands: $ git clone https://github.com/RestComm/jss7.git
$ cd jss7
$ git remote add vm https://github.com/vmykhailiuk/jss7.git
$ git remote -v
origin https://github.com/RestComm/jss7.git (fetch)
origin https://github.com/RestComm/jss7.git (push)
vm https://github.com/vmykhailiuk/jss7.git (fetch)
vm https://github.com/vmykhailiuk/jss7.git (push)
$ git fetch vm
$ git checkout sccp-conn-establishment-release-fixes-#242
$ git branch -D sccp-co
$ git push origin :sccp-co
$ git checkout -b sccp-co
$ git push origin sccp-co Of course, checking out repository could be skipped if that was done earlier. |
just merging brings me also conflicts (: I see at the top of PR "into RestComm:master from vmykhailiuk:sccp-conn-establishment-release-fixes-#242". May it be a problem because of your PR is based on top of "master" branch ? I am working for your updates in "sccp-co" branch now. |
@vetss sccp-co:
sccp-conn-establishment-release-#242
Because of this, those branches can't be merged right now. If those commits were cherry-picked, than new commit also should be cherry-picked. sccp-conn-establishment-release-#242
Commands to load latest changes to sccp-co branch:
|
yes, previous commits were cherry-picked. And I tried to cherry pick a next your commit that brought me conflicts. I can make new cherry-pick operations if you give me a list of commits to add.
Do you mean it is enouph to add a single commit from you ? I can not find that commit... |
Or we can kill that new created "sccp-co" branch and start of working with master branch. In this case your updates needs to have a PR with differenses from master branch (may be like this one). I do not want just to merge branches to avoid of adding of unexpected commits, better to cherry-pick of concrete commits. The problem is - we need to start of code checking from some older point. If you think that your current code is more or less ready I can create a new "sccp-co" branch where we put code and from whicj you will be able to continure your work. PS: I am using EGIT from eclipse, not just a GIT |
I tested your cherry-pick command "git cherry-pick 5eac06c" Have I added all your provided code ? I am asking because a commit name is not present in this PR |
@vetss |
ok, let then me check it. |
Hello @vmykhailiuk I accepted your commit into sccp-co branch. Check my comments in : |
Hello,
This PR is for issue #242.
Please see implementation notes #242 (comment)
Best Regards,
Vadim