You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Justgo requires the destination folder to be completely empty. This can be annoying if you are working in a freshly created github workspace which will typically have .git, .gitignore and README.md.
JustGo should consider presence of these three items to be equivalent of folder being empty, in order to provide better user-experience during bootstrapping.
The text was updated successfully, but these errors were encountered:
I assume you are saying that out of the three one (README) is a problem. In which case I agree.
One of two choices:
unzip somewhere else, not at the destination, do cleanup and then move - not my favorite choice
if you notice .git, .gitignore and README are already present:
Ignore presence of .git and .gitignore
In case of README - move it to some unique place (e.g. "uuid" and temp folder) do everything as it would be done normally, move it back. Probably a nice opportunity to use defer, by the way.
Currently Justgo requires the destination folder to be completely empty. This can be annoying if you are working in a freshly created github workspace which will typically have
.git
,.gitignore
andREADME.md
.JustGo should consider presence of these three items to be equivalent of folder being empty, in order to provide better user-experience during bootstrapping.
The text was updated successfully, but these errors were encountered: