Closed maurolepore closed 3 years ago
Thanks! I'm not partial to using repo/ but in adding the "/" I was inspired by the -F
flag to ls
:
➜ docker git:(30_remove-user_results) ls
docker.Rproj pacta README.md r-packages system
➜ docker git:(30_remove-user_results) ls -F
docker.Rproj pacta/ README.md r-packages/ system/
Can you explain a bit why you think its not appropriate? I see how it may be inconsistent with other references to a directory, and maybe with how git itself refers to repos. I'm just curuious.
fs::path("foo", "bar", "baz")
.... and also, consider the struggles we've had with paths being copy-pasted together and it being uncertain whether or not it had a trailing "/".... also consider that the character used for slash is not the same on all platformswrt to ls -F
... -F
is a special flag used to classify the type of file it's showing...
Thanks a lot!
Fixes #15
This PR produces a more informative message when the given tag already exists in the repo.
Thanks @cjyetman