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
This issue is about handling of remote repositories in gitlib (poke @MattKetmo)
git fetch copy all tags and store them locally. It happens unless you specify git fetch --no-tags. Once they're downloaded, you can't distinguish them anymore from your local one.
You can get a full-list of references (:heart:) on a remote repository, but it costs a call to remote repository: git ls-remote origin.
This issue is about handling of remote repositories in gitlib (poke @MattKetmo)
git fetch
copy all tags and store them locally. It happens unless you specifygit fetch --no-tags
. Once they're downloaded, you can't distinguish them anymore from your local one.You can get a full-list of references (:heart:) on a remote repository, but it costs a call to remote repository:
git ls-remote origin
.References
The text was updated successfully, but these errors were encountered: