Skip to content
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

Fix branch updates and make Linux compatible #5224

Merged
merged 2 commits into from Oct 13, 2017

Commits on Sep 27, 2017

  1. Fix the prepare_branch function

    Currently when checking if the destination branch already exists the
    command 'git branch' is used. This only returns local branches. What is
    actually required is the list of remote branches. This can be obtained
    by the command 'git branch -r' and filtering the result.
    adbridge committed Sep 27, 2017
    Copy the full SHA
    d2d2b68 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2017

  1. Move to using command strings rather than command lists.

    Previously the script used
    cmd =['git','checkout', branch]
    syntax. This does not work well cross platform. The solution it to
    actually use strings. E.g.
    cmd = "git checkout " + branch
    adbridge committed Sep 29, 2017
    Copy the full SHA
    31407a1 View commit details
    Browse the repository at this point in the history