Dear weex mentor and developers,
        When I rebase merge pr by using command, I found the pr on github weex 
has not been marked as merged and still be marked as open.
        However, It looks fine when use buttons of "Rebase and merge" 
and "Confirm rebase and merge" by UI operation, but we can't do this because 
committer has no authority which only admin has.



       I do rebase merge pr by using command like this:

git checkout master  # Check out the "public" branch 

git pull              # Get the latest version from remote

git checkout -b pr_comment_branch  # topical branch

... # do stuff here.. Make commits.. test...

git fetch origin      # Update your repository's origin/ branches from remote 
repo

git rebase origin/master  # Plop our commits on top of everybody else's

git checkout master  # Switch to the local tracking branch

git pull              # This won't result in a merge commit

git rebase pr_comment_branch  # Pull those commits over to the "public" branch

git push               # Push the public branch back up, with my stuff on the 
top

        Does apache have any the previous solution of example, or give us some 
guidance.

        
        Please give me help, thanks!


                                                                     gurisxie

Reply via email to