0

I have been happily merging branches locally via the "finish feature" option in "gitflow"... This also deletes the local version of that branch. I have only just realised all of my remotes copies of these branches are still up and running.

Should i merge the branches in on the remote rather than deleting them?

enter image description here

BJ Myers
  • 6,617
  • 6
  • 34
  • 50
Jimmyt1988
  • 20,466
  • 41
  • 133
  • 233
  • possible duplicate of [Delete a Git branch both locally and remotely](http://stackoverflow.com/questions/2003505/delete-a-git-branch-both-locally-and-remotely) – aronisstav Feb 10 '15 at 13:52

1 Answers1

1

Pushing the master on the remote should be enough to have those branches 'merged'.

You can then delete the remote copies with git push <remote> :<branch>.

aronisstav
  • 7,755
  • 5
  • 23
  • 48