-
Notifications
You must be signed in to change notification settings - Fork 189
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
Moving current build to prev when a new build is started #2392
Moving current build to prev when a new build is started #2392
Conversation
@dhillonks you've merged Let's undo your merge commit like so: # update your local master branch to what's on the upstream
git checkout master
git pull upstream master
# reset your branch to the commit before you merged
git checkout -B issue-2384-remember-prev-build 0b76fd39ddae5bbba5fc3280c4702d36c0b77416
# rebase onto master, and squash your two commits together
git rebase -i master
# push this updated branch here so we can merge
git push origin issue-2384-remember-prev-build -f |
@humphd Yes, that is what I had done before. I didn't realise that it was not needed. However, I have followed the steps highlighted above to rebase and update the branch. Could you please take a look again? |
You haven't done it correctly. You have 2 nearly identical commits on this branch, and it's still not rebased onto |
Issue This PR Addresses
Fixes #2384 (Autodeployment server not remembering previous build info).
Type of Change
Description
Assigning the
current
build toprevious
in so that the previous build information is notnull
.Checklist