Questions tagged [git-tag]

git-tag is the Git command used to create, list, delete or verify a tag object signed with GPG. A tag is used to mark specific points in history as being important.

473 questions
0
votes
1 answer

Adding tags retrospectively and git log

I'd like to be able to query git and output a list of changes between tagged releases to create simple release notes. I've retrospectively added tags to commits in my git repo and pushed these to origin as well. But now when I try and list the…
Gene Myers
  • 1,198
  • 13
  • 31
0
votes
1 answer

Point git tag to a specific commit id

How can I point git tag to a specific commit id? For Example : I have following commits #git log 6470098 change1 b72099b change2 1514994 change3 068bf4c change4 I need to tag 1514994. How will I do it?
Futuregeek
  • 1,666
  • 3
  • 22
  • 46
0
votes
1 answer

How to check which git tag release a particular file was introduced in?

I have a bunch of files that I want to know which release they were introduced in. In bulk. The releases are tagged in git. What's the easiest way to quickly check large (~80) number of files' presence in multiple (~10) tags ? I can write some…
Alexandre Rafalovitch
  • 9,436
  • 1
  • 19
  • 26
0
votes
2 answers

How to use Git to tag a commit rather than a hash

I have a large series of commits, with various version tags, i.e.: root->x->x->1->x->x->x->2->x->x->3->x->4->x->x->x->5->master I want to insert a new commit near the start of this. The problem is, I then need to go through and re-tag everything,…
Benubird
  • 15,843
  • 24
  • 83
  • 128
0
votes
1 answer

Git - change file

I've made new repository and made couple commits. I haven't pushed it anywhere so nobody cares whether history changes. I made mistake in first commit (the whole file is wrong) and I need it to change in all further commits (from the first, so…
Jakub Tětek
  • 161
  • 1
  • 7
0
votes
1 answer

Git: How to list and compare tags in your git remotes?

In my local repository I have multiple remotes declared. A git fetch --all --tags (requires Git 1.9+) reads like this: ➜ project.git git:(stable-3.0.x) ✗ git fetch --all --tags Fetching upstream From github.com:upstream/project - [tag update]…
bentolor
  • 2,636
  • 2
  • 18
  • 30
0
votes
1 answer

Are the commit IDs of submodules kept in a git tag?

The impetus behind this is to manage both the source and wiki repositories of GitHub and be able to git tag the state of the entire project for releases. If there is an easier way to go about this, I'm all ears in the comments :) I need to be able…
Sean Allred
  • 3,206
  • 2
  • 28
  • 62
0
votes
1 answer

Github : Automated tagging on Merging of Pull Requests

Is there a way to trigger an automatic, custom tagging of a repository every time a pull request is merged in github ? for example... After merging "pull request 8", id like to automatically tag the repository at that state as…
jayunit100
  • 16,490
  • 20
  • 83
  • 152
0
votes
0 answers

Git signing tags and log

I have have several signed tags on my repository. When I use: $git show tag_name the pgp signature appears, between all information on the tag. However if I use: git log --pretty="format:%H %G?" the option %G? displays always N, as if none of the…
fa__
  • 101
  • 12
0
votes
1 answer

Duplicated tag on remote?

I made two local tags, 1.0.0.1308 and 1.0.1.1308: $ git show-ref 2cc0513083619934459832c175b433ee1ecfedf9 refs/heads/master 2cc0513083619934459832c175b433ee1ecfedf9 refs/remotes/origin/HEAD 2cc0513083619934459832c175b433ee1ecfedf9…
talles
  • 11,195
  • 8
  • 39
  • 55
0
votes
3 answers

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: Pull the latest changes from remote git repo. mvn…
Tobb
  • 10,619
  • 4
  • 48
  • 67
0
votes
1 answer

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?
joseph.hainline
  • 21,512
  • 16
  • 50
  • 70
0
votes
1 answer

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 to run the following command ? git pull origin…
cyberjar09
  • 750
  • 1
  • 7
  • 16
0
votes
1 answer

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!
Rendy
  • 5,311
  • 11
  • 45
  • 86
0
votes
1 answer

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 tags/branches to make hot fixes to production. I have…
Ben Scheib
  • 392
  • 1
  • 3
  • 14
1 2 3
31
32