$ git branch -av fix_add fd98d3d Add add file fix_add1 2241da2 Add "!" * master 4b6999e create folder and file temp 543c5d8 add test $ git branch -d temp error: The branch 'temp' is not fully merged. If you are sure you want to delete it, run 'git branch -D temp'. $ git merge temp CONFLICT (modify/delete): readme deleted in HEAD and modified in temp. Version temp of readme left in tree. Automatic merge failed; fix conflicts and then commit the result. $ git commit -m 'merge branch temp' [master 5524853] merge branch temp $ git branch -d temp Deleted branch temp (was 543c5d8). $ git branch -av fix_add fd98d3d Add add file fix_add1 2241da2 Add "!" * master 5524853 merge branch temp
|