git tag is used to mark specific points in history as being important
0
votes
0answers
16 views
Git Subtree pull not bringing in or merging tags together
I have a Git repository built via git-subtree from other repositories. The grouped repository doesn't have any of the tags from the subtree repositories. Is there a way to merge their tags together?
...
2
votes
1answer
30 views
Find all tags at same commit as a given tag in a remote git repository
I am trying to find all tags that are at the same commit as a given tag in a remote git repository. If at all possible, I do not want to clone a local copy of the remote.
For example, I have a ...
0
votes
0answers
35 views
Tags on a git repo not in the ancestry of master: How to “merge the latest tag into the master branch”?
I deleted and recreated a repository on GitHub (please, don't ask why).
From my "old" local repository I pushed all tags following THIS S.O. question.
Now I have all tags there, but only the 2 commits ...
1
vote
1answer
50 views
Reverting a branch changes tag name of git describe
I just learned how to revert a branch. That works fine. The thing is, I tagged the master's commits and I plan to use the git describe command to create deployments based on the latest tag. Reverting ...
1
vote
0answers
28 views
Why does git remote show two commits for the same tag?
When I check the tags for a remote git repository using git ls-remote --tags origin I see the following:
0a8e26c20 refs/tags/v1.0
acd5c5c8e refs/tags/v1.0^{}
I rebased a few commits earlier in ...
0
votes
1answer
29 views
Git rebase on tags and not individual commits
I have a project where my development branch is 2 tagged releases ahead of my stable branch but I want to remove the first tagged set of changes (which is a series of functionality I no longer want) ...
0
votes
3answers
67 views
Lost tags in git
I am facing a problem with git tags when using the maven release-plugin. We have turned off the automatic push to git during mvn release:perform, and the following is done to build a new release:
...
1
vote
2answers
258 views
Git branch from remote tag
I've created a new local git repository mirrored from another remote repository:
git init
git remote add original {url}
git pull original master
git remote add origin {url}
git push -u origin master
...
1
vote
1answer
33 views
how to manage project variations as well as development flow with Git?
I have a rails website that is about to be sold to different clients with small variations for each client. In the mean while I'll be definitely developing fix and/or modifying the "common" parts of ...
0
votes
1answer
33 views
Is there a way to get a tag from a specific commit in git?
How do I get the git tag(s) on a specific git commit SHA?
0
votes
1answer
43 views
Git: committing to a tag and then merging commit to master
I'm mainly familiar with SVN. I have been using Git for a while, but haven't done things that are extremely advanced. For my project, I have been creating tags that mark individual releases. For ...
1
vote
2answers
118 views
Renaming git tags results in inconsistency
After renaming a git tag "1.0" to "1.5" with
git tag 1.5 1.0
git tag -d 1.0
git push origin :refs/tags/1.0
my git repository seems to be in an inconsistent state. Here is the git describe output:
...
0
votes
2answers
107 views
How to verify the author of each commit in git
I'm studying a migration from subversion to git. For starters, a central-repository scheme will be used, just like svn.
The problem is that I want to make sure each commit was created by the real ...
4
votes
3answers
165 views
In git, list all tags since some tag
I'm using tags to identify release versions and to identify "development complete" commits for tasks. Doing a git tag I get a list like the following.
> git tag
v0.1.0
task_1768
task_2011
...
3
votes
3answers
115 views
unable to curl a git tag
I want to curl a git tag through the command line:
curl -O http://someurl
But when I try to untar the file it is broken? Do anyone know what is the problem?
2
votes
2answers
96 views
Does git only support a flat tag structure?
I'm moving from svn to git. With svn I used to have a tag structure like this:
tags
| fixes
| | 14
| | 31
| | 46
| betas
| | 1.1b
| | 1.1b2
| releases
| | 1.0
| | 1.1
| | 1.2
Is this not possible ...
1
vote
1answer
153 views
Git describe giving different tags
I have tagged my repository with the tag "Release_V1.0.0.4". But here is what I got from "git describe" and "git describe origin".
[root pds_series]# git describe
Release_V1.0.0.2-22-g0859de9
[root ...
0
votes
1answer
45 views
What is the behavior of `git remote update <name>` when `remote.<name>.tagopt` is not set?
The git remote man page explains what --tags and --no-tags does, but not the default behavior if neither is specified. What is that behavior?
0
votes
1answer
76 views
How to checkout a tag from different remote branch
I have a branch containing production configurations (called prod-conf for now) which follows a remote branch (feature-name-branch). When pulling from remote to perform an update would it be correct ...
0
votes
2answers
58 views
Get the time and date of git tags
I have a project that is using git and have tagged all the releases with a tag.
$ git tag
v1.0.0
v1.0.1
v1.0.2
v1.0.3
v1.1.0
My goal is to list the releases and release dates in a web interface ...
1
vote
2answers
193 views
Git tag for a subfolder of a repository
I use Git to import a SVN repository. Then I created my own project as a subfolder in the repository.
I use the SVN repository with Git-SVN. My working procedure is:
git commit -am "message"
git ...
1
vote
2answers
80 views
How to get the branch from tag name in Git?
I am trying to get the branch name from a given tag.
I tried git describe --tag <tag-name> but this doesn't provide me any branch name. I tried using gitk to show to the tags and branch but ...
0
votes
1answer
50 views
Rebasing between tagged versions removing other commits on Git
I have a project which I am working by myself (no team). I have tagged some commits like v0.0.1, v0.0.9...v0.9.1 and so on. Now, I would like to rebase them leaving only those version tagged commits, ...
1
vote
1answer
77 views
git subtree tag browsing
I have a project that uses two library that are maintained seperately. To avoid the mess of manually copying files over every time the library changes, I managed to create two subtree using this ...
0
votes
1answer
73 views
Can I push a tag to current pushed git?
Is it possible to push a tag to currently pushed file in github? I have searched through Google but no clue at all. Thanks!
0
votes
1answer
302 views
How to add or remove a git tag by using GUI on Windows? [duplicate]
Possible Duplicate:
How to use tags for versioning in git gui
I install Git-1.7.11-preview20120710 and my OS is Windows.
Adding or removing git tags from command line is easy:
Adding a ...
2
votes
2answers
227 views
Git tag before or after merge?
I have a simple question about tagging different versions of my project with git. If I just completed my 1.1 branch and plan to merge it into master, should I tag this branch as 1.1 before I merge it, ...
2
votes
1answer
70 views
Git - rebasing to a particular tag
(This seems like it should be very easy to do, yet I'm coming up empty on searches so far.)
I have a body of code from an upstream source, with various versions tagged in it on various branches.
I ...
1
vote
3answers
259 views
Software version numbering with GIT
Overview: I want to set automatic (or at least semi-auto) software version numbering in Git.
I want to set some starting version number (like v1.0) to my project. I know, there is tag for this ...
1
vote
2answers
306 views
Adding Tags to a Pull Request
I have a repo iontech/Anagen forked from agiliq/Anagen
I made a few commits to my fork and added a tag. Then I opened a Pull Request. This Pull Request includes only my commits.
How do I include the ...
2
votes
1answer
368 views
List git tag names, dates and messages
How do I list the tag name, tag date and tag message for all tags?
It seems that git's separation of display logic for commits through git log and tags through git tag makes it difficult to list the ...
3
votes
1answer
93 views
Why sign Git tags?
Git provides the option to sign annotated tags with your GPG private key, but what is wrong with just accepting a tag's claimed origin? What damage could a spoofed tag do when the tag does not alter ...
0
votes
1answer
52 views
Getting the tags from a GitHub repository
In a project in my GitHub repository I've been tagging the project and pushing the tags:
git push --tags
The tags appear correctly in the GitHub repository, however I work with this project in ...
0
votes
1answer
111 views
Doing Hot Fixes on Heroku with Git Tags
Hoping somebody can point me in the right direction here. I want to better understand how my application is deploying a tag to Heroku and how I can take advantage of that to use a combination of ...
0
votes
2answers
48 views
Can I check out/create a tag with certain commits left out?
I want to create a tag that leaves out certain commits. So when creating the tag, I choose which commits to add (or which to omit). This would enable me to deploy a hot fix and leave out older (and ...
2
votes
1answer
457 views
How to list unpushed Git tags
I'd like to see which tags I have locally that aren't available on a particular remote. How can I do this? I know I can do git push --tags to push all of them. However, if there are some tags that I ...
2
votes
2answers
583 views
Get last git tag from a remote repo without cloning
How to get last tag from a (non checked-out) remote repo?
On my local copy I use describe
git describe --abbrev=0 --tags
But I can't use describe with remote storage
3
votes
2answers
963 views
In git, how do I sync my tags against a remote server?
Is there a way to keep my local git tags in lockstep with a remote's tags? That is -- not only get new tags when created (as usual, when fetch-ing/pull-ing), but also prune tags no longer on a remote ...
4
votes
1answer
765 views
Git - Cannot delete remote branch
I made a git branch unintentionally named "0.2" which is also a tag.
So I tried to remove it from origin:
$ git branch -rD origin/0.2
Deleted remote branch origin/0.2
But then:
$ git fetch origin
...
1
vote
1answer
777 views
Git tag release version?
A pre-release version MAY be denoted by appending a dash and a series of dot separated identifiers immediately following the patch version. Examples: 1.0.0-alpha, 1.0.0-alpha.1, 1.0.0-0.3.7, ...
2
votes
2answers
145 views
Git: How to make an existing git lightweight tag point to another commit?
On a test Git repository, git log yields:
commit e1f972f22f9906ad62007b4e372d8dc06bc47656
Author: davidandreoletti
Date: Sun Mar 18 11:23:09 2012 +0800
Added 0
commit ...
1
vote
1answer
297 views
How to use gpg-agent to bulk sign git tags
My question is about the gpg-agent command which performs caching for gpg keys and pass-phrases.
I want to know how to use it so that I can run multiple git tag -s commands in a script without having ...
9
votes
1answer
309 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.
...
20
votes
3answers
3k views
How do I edit an existing tag message in git?
We have several annotated tags in our git repository. The older tags have bogus messages that we would like to update to be in our new style.
% git tag -n1
v1.0 message
v1.1 message
v1.2 message
v2.0 ...
7
votes
4answers
1k 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 ...
2
votes
2answers
113 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
1answer
71 views
Determine latest received git tag
I need to write an autoupdate script for our project. I have everything, except that I can't determine the name of the latest received tag. I tried with git describe, but it tells me the latest ...
0
votes
2answers
691 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 ...
2
votes
1answer
265 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
370 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.
...

