FAQ Database Discussion Community
git,teamcity,git-tag
How can I create a git tag after successful build in Team City?
git,github,git-tag
I had tagged my branch for release and then another commit was made that needs to be included in the tag. How can I do that ? What are the steps? Can someone explain please ?...
git,github,git-tag
I want to tag a certain commit. When I push the tag, GitHub assumes it's a release, I don't want that. Is there a way to just push the tag without releasing?...
git,git-tag,git-describe
I have a git commit with 2 tags, like this: commit1-----tagA,tagB Checkout "tagA" by git checkout tagA Question: How to get the tag name of current checkout? I have try git describe, but it's always return name "tagB", expect return "tagA". Seems git describe only be able to return...
git,git-tag
I have a Jenkins job that does the follow steps. Checkout release branch Modify a few files on the branch Commit modified files locally, but do not push Tag the branch Checkout the tag Build As you can see from step 3, the modified files should not be pushed back...
git,git-branch,git-tag
I have several git repositories. For every project I need a few of them (tags or branches). After the project is finished I create a branch from the last commit. Because the next Project there could be radical changes, so they may not be compatible to each other any more....
git,github,git-clone,git-checkout,git-tag
I need to clone a private repository from GitHub, but I only want to get a specific tag (so basically, cloning is actually the wrong term for it). Now, the problem is that there are multiple options, and all of them don't really work out: GitHub offers tagged versions as...
git,git-merge,git-tag
I have two projects (A and B) both with "master" and "devel" branches. In project A, I merged "devel" with "master" (git also asked me to add a merge message) and then tagged the last commit as "v1.0" on master branch. When I issued "git show v1.0" on master branch...
git,git-branch,git-tag
When pushing to the master, I read that it is recommended to use: git tag -a <tag name> -m <message> ; git push --tags I added a new tag, and pushed the changes to the master, now I modified another file and want to push it to the master with...