I have to create several tags every day in a Git repository.
When I have lots of tags, will it make my repository sluggish or cause other issues?
Note: I’m using GitHub, but please answer generically.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
(Annotated) tags won’t make Git sluggish, only harder to use in that you will have an harder time to find relevant tags amongst all the intermediate ones.
Worst case, it can make your web interface (like GitHub) sluggish if it has to display thousands of tags.
Maybe all those tags don’t need to be pushed, in which case you could consider making intermediate local “Lightweight” tags.