Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Allow cloning of repositories into empty directories #2316
Conversation
- Currently clone button is disabled and open button is enabled on empty directories. - Desired behavior should support cloning to empty directories. - Non-empty directory message is not shown when the directory is empty.
|
This is looking good! Could you add some unit tests? Something similar to this... Maybe add the following tests:
I've just realized this is a draft PR. Sorry if I've jumped the gun reviewing it. ;-) |
src/GitHub.App/ViewModels/Dialog/Clone/RepositoryCloneViewModel.cs
Outdated
Show resolved
Hide resolved
80198b4
to
43b5ef6
|
The code for this looks good! Thanks for the PR! |
|
We probably need to make the error/warning messages clearer... For instance when I'm trying to clone into a directory that is not empty and does not have a git repo That's not entirely accurate, I haven't looked but I think we have to re-evaluate the messages output by the view model in this and probably some other cases. |
|
The more I look at it, it's just that one message that would no longer be accurate... If the directory is not empty, and is not a git repo that could be scanned. Based on the current logic in this Pull Request.
|
|
Let @meaghanlewis weigh in before you change anything... |
|
I agree with what @StanleyGoldman proposed: |
|
@StanleyGoldman I have updated the error message for |
…led on directories that don't exist
a29268a
to
ef0ed57
|
Hey @YuPeiHenry I pushed some commits. It felt easier than nit picking at you. So I copied the English text to all the language files, we have a 3rd party resource that translates things for us. So we just put the English in place until they get around to it. I also realized I reordered the logic funny in my pseudocode. You changed the flow to match my ramblings. I undid the damage I caused. Sorry to put you through my spaghetti brain. And I tweaked All nit picks. I didn't wanna bug you with it. Since my hands have been all in this, I'm going to let @meaghanlewis test this and give us both the final approval. |
|
thank you @YuPeiHenry for your contribution! |


Ready for review
fixes #2250
The fix modifies
CanCloneandCanOpenonRepositoryCloneViewModel, and modifiedRepositoryCloneServiceCloneOrOpenRepository method to factor for empty directories.