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 Getting Started With Git Working With Git Repositories

Nathan Brenner
Nathan Brenner
35,844 Points

how to remove repository that was added without a name

I put in git init without a repo name, and it put everything on my ls into that repo.

How do I remove that repo? If I don't create a repo with a name, how do I ls -a that repo?

1 Answer

Paul Wroe
Paul Wroe
13,762 Points

Hi,

The repo will exist as a .git folder with or without a repo name. If you remove the .git folder, you remove the repo. rm -r .git will remove the .git folder from the current directory.

ls -a will show any files or folders that start with a period. Files that start with a period are considered hidden and don't show up unless you list all.

I hope that helps.