Originally, there was the master branch.
Then I've create a feature_1 branch from master, to implement feature 1.
After some work on this new branch, I decided to implement feature 2, that depends from feature 1 so I did:
$ git checkout -b feature_2 feature_1 I did some work on feature_2 branch.
Now, it has no sense to continue developments on feature_1 branch since all its developments are included in feature_2 branch.
Is it "safe" to delete feature_1 branch even if it's the base from which I started feature_2 branch? After the deletion, will I see in the Git graph a single feature_2 branch starting from the master branch?
What I would like to achieve is what written above, a single feature_2 branch starting from master branch at the same point when I started feature_1 branch. Finally, rename it as feature_1_2 branch.