68827/error-branch-dev1-fully-merged-sure-want-delete-branch-dev1
Hi Guys,
I am trying to delete one of my Git branch. But it shows me the bellow error.
$ git branch -d dev1 error: The branch 'dev1' is not fully merged. If you are sure you want to delete it, run 'git branch -D dev1'.
Hi@akhtar,
When you create one new branch in Git and commit new versions on that branch, it will create logs of that versions. Now if you try to delete that branch it will give an error. This error tells you that before delete your branch, merge your new versions with master branch. But you can delete that branch forcefully by using the bellow given command.
$ git branch -D dev1
Hope this will help.
This is simple, just follow the below ...READ MORE
Hi@MD, You can try the git fetch command ...READ MORE
This happens when no editor is set. ...READ MORE
Follow the below commands , the URL ...READ MORE
Hey @nmentityvibes, you seem to be using ...READ MORE
Consider this - In 'extended' Git-Flow, (Git-Multi-Flow, ...READ MORE
It can work if you try to put ...READ MORE
When you use docker-compose down, all the ...READ MORE
Hi@akhtar, You got this error because you have ...READ MORE
Hi@akhtar, If you want to delete all the ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.