Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • G gitlabhq1
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 21
    • Issues 21
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 12
    • Merge requests 12
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • gpt
  • large_projects
  • gitlabhq1
  • Issues
  • #8919

Closed
Open
Created Mar 05, 2015 by Administrator@rootOwner

Deleting branches doesn't trigger MR refresh

Created by: qfox

How to reproduce: Create a branch, add several commits, push, create MR, squash all added commits, delete remote branch, repush it, and look at MR.

git checkout -b deletable-branch
git ci -m "1" --allow-empty
git ci -m "2" --allow-empty
git ci -m "3" --allow-empty
git push origin deletable-branch
# Now create MR for this branch
git reset --hard HEAD~2
git ci --amend -m "another commit"
git push origin :deletable-branch
git push origin deletable-branch

Expected: Same as git push origin deletable-branch -f.

Actual: Old commits still persist in MR.

Possible solution: Trigger some internal event on branch delete and handle it to refresh MR. Probably close it with deleted status, and reopen that MR if somebody pushed to branch with MR with deleted status.

Assignee
Assign to
Time tracking