Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Git Basics Branches Branch Manager

Martina Carrington
Martina Carrington
15,754 Points

We're not actually going to be needing the another_new_feature branch, so let's just delete it for now.

I did the git branch -d another_new-feature and git branch -d another_new_feature

3 Answers

Michael Hess
Michael Hess
24,512 Points

Hi Martina,

If I recall, this challenge is picky about the D being capitalized.

Try:

git branch -D another_new_feature

If you have any other questions feel free to ask! Hope this helps!

Martina Carrington
Martina Carrington
15,754 Points

thanks Michael ,i didn't know you need to capitalized d

Michael Hess
Michael Hess
24,512 Points

My pleasure -- glad I could help!

use uppercase D not d like this <<<git branch -D another_new_feature>>>

Hi. I found this while trying to figure out the answer for it. But on the cheat-sheet that github itself puts out the D is not capitalized. Maybe this needs to be changed in the lesson?