Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
8k views

git push tag -> master

I am trying to accomplish something that is probably very simple, though I cannot figure out how, or what I'm doing wrong. So to get straight to the point: I want to push for example my tag 1.0.0 to ...
6
votes
8answers
2k views

Is there an standard naming convention for git tags?

I've seen a lot of projects using v1.2.3 as the naming convention for tags in git. I've also seen some use 1.2.3. Is there an officially endorsed style, or are there any good arguments for using ...
3
votes
1answer
82 views

Is there a simple command to convert a branch to a tag?

I am about to complete a tedious process of converting "dumb snapshots" to git. This process has been going very well (thanks to this rename process), but now I realized that some of the branches that ...
2
votes
2answers
67 views

Why did my local git tag go from “hello” to “hello-1-48281”

$ git tag hello $ git describe --tags hello ... work work ... $ git commit -m "work stuff" $ git describe --tags hello-1-48281 Say what? What's the extra stuff? Doesn't look like a SHA1... is it ...
2
votes
2answers
345 views

Git: distinguish between local and remote tags

If there are tags in the remote repository, I'm usually getting them automatically when pulling. When I delete the created local tag (git tag -d <tag-name>) and pull, the deleted tag will be ...
1
vote
3answers
232 views

Can git submodule update be made to fetch tags in submodules?

I have a git repository which uses a submodule which I'd like to point at an annotated tag, but when I do git submodule update new tags don't get fetched. I can get new tags in the submodule by cd-ing ...
1
vote
1answer
99 views

Requiring annotated tags in git

Is it possible to set up a policy on a git repo that disallows lightweight tags from being pushed to it?
1
vote
2answers
117 views

pushed git repsitory missing branch & tag names on gitk

I just did my first ever git push: ~/sb/ws> git push ~/gitrepo master:master Counting objects: 1360, done. Delta compression using up to 4 threads. Compressing objects: 100% (998/998), done. ...
1
vote
1answer
279 views

Tagging an old commit of a submodule with git

I have a git project (repo1) including a single submodule (repo2). What I would like to achieve is to tag my project using an older commit of my submodule (like HEAD - 3). I tried with a checkout of ...
1
vote
1answer
611 views

have git list all tags along with the full message

I want git to list all tags along with the full commit message. Something like this is close: git tag -n5 This does exactly what I want except that it will only show up to the first 5 lines of the ...
0
votes
0answers
9 views

How do I tag my git repository using the GitHub Mac application?

I pretty new to GitHub and personally did not have time to learn too much command line. I prefer using the GitHub Mac app for my personal projects and I was curios if I can add tags with it. ...
0
votes
2answers
134 views

Git: Converting tag to branch in remote repo

I have a tag called latest and I want that to be a branch instead. Opposite of this. I need to remove it from the remote repo as well. Background: This is currently a problem for many golang ...
0
votes
1answer
115 views

git: Is there something like per-branch tags?

I have some history rewriting to do for which I'd like to keep my original tree intact for now. The rewritten tree should however copy the tags previously used as well. Is there any less manual option ...
0
votes
1answer
150 views

robust deploy strategy with capistrano and git

What is the best way to set up a robust deploy strategy for a RoR app that allows for the following scenario? new feature committed new feature deployed to staging environment emergency feature/fix ...
0
votes
1answer
153 views

git tag - based on commit time

Is there any way to tag the git repository based on the commit time. Ex: If I have the release time, I want to tag all the repositories used in the release as of the release time. The main issue is ...