git - How to remove branch and remove changes made in branch -
i started new branch , made lot of changes, controllers, database, models, etc testing new feature see if wanted keep or trash it.
i want trash branch without of changes being save or merged master branch. want rid of it. how can accomplish this?
you git branch -d name_branch
and git push origin :name_branch
remove origin also.
Comments
Post a Comment