I'm using git 1.7.1 on Ubuntu 10.10 amd64, and I'm trying to extract the hash of my repository HEAD to use it in an automated version information that I compile into my project.
In the past, this always worked by using
git describe --tagshowever, git is now throwing
fatal: No names found, cannot describe anything.at me. Does anyone have a clue what that means?
Google showed only few hits and no solution.
311 Answers
I have had this problem in a CI build environment where the CI tool was performing a shallow clone of the repository. This was frustrating, because in my development environment, the command
git describe --tagswould give me output like
2.2.12-7-g8ec9d6c9whereas in the build environment I would get the "fatal no names found" error. If I tried using the --always tag
git describe --tags --alwaysthen I would simply get the hash of the latest commit, but not the most recent tag prior to that commit
8ec9d6c9Performing a git pull in the build environment wouldn't help, because once the repo has been cloned shallowly, future pulls will not update the tags.
The solution was to ensure that the initial clone of the repo in the build environment was not a shallow clone (i.e. the git clone command was not used with --depth, --shallow-since or --shallow-exclude parameters).
If you want the id of your HEAD then you don't need describe, you should just use rev-parse.
git rev-parse HEADIf you want an abbreviated hash you can use --short.
git rev-parse --short HEADIf you want a "describe" to fall back to an abbreviated hash if it can't find any suitable tags, you can use --always.
git describe --always 3 This happens if you don't have any tags in your repository. If the repository does have tags, then you're in a shallow clone (this is the default in CI systems like TravisCI or GitHub Actions).
To fetch the history (including tags) from within a shallow clone, run
git fetch --prune --unshallowFor example, in the case of GitHub actions:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallowAfterwards, git describe should work again.
It sounds like you're expecting git-describe to include the most recent tag and number of commits since that tag. However, the fatal: No names found message means you don't have any tags in your repository. You need to have at least one tag in the commit history in order for git describe to tell you the latest tag.
Just guessing, but perhaps you tagged a commit somewhere else, but never pushed the tag upstream (maybe you pushed the commit upstream, tagged it later, and didn't repush?). Now a new clone of your upstream is giving you this error (since it doesn't have any tag). If that's the case, you could try git push --tags from the repository that has the tag you want (where git describe is doing what you expect). Then do git pull on the repository that doesn't have the tag.
If you're using GitHub Actions and the actions/checkout, you should set the fetch-depth to 0:
# ... steps: - uses: actions/checkout@v3 with: fetch-depth: 0 2 I had the similar issue while working on a CI job, the issue was git clone or checkout scm used did not fetch tags while cloning the repo.
Fetching without tags Fetching upstream changes from .**********
You can enable fetch tags by selecting "Advanced clone behaviours" and then clicking on fetch tags ..
This command helped me:git fetch -t
It fetch the latest tags from the git repository, and is therefore enable to describe the tags.
5If you're using Github Actions and checkout@v3
You'll run into this issue because by default the action fetches only the last commit, and as mentioned by the other posts, if this commit is not tagged, then git describe --tags will crash (it crashes when it cannot find a tag)
There is a open PR somewhat ignored by the Github staff meant to fix this.
In the meantime, you have several options
- fetch all commits (see answer)
- hacking the aforementioned answer and taking inspiration from other answers/comments : fetch X commits (hoping you don't have more than X untagged commits between your head and the last tagged commit) with something like (X = 50)
# ... steps: - uses: actions/checkout@v3 with: fetch-depth: 50 If you came here due to this error message in Travis CI, you can use the following setting to avoid shallow clones:
git: depth: falseI tested git fetch --tags but that did not work.
This issue happens after cloning a forked branch, and disappears after rebasing from the upstream.
Before rebasing:
# git describe --tags
fatal: No names found, cannot describe anything.After rebasing:
# git describe --tags
v0.1.xxxxThe command to rebase:
git remote add upstream xxxxx
git checkout main
git remote prune origin
git fetch -p upstream
git rebase upstream/main Gitlab 14.7 changed the default git depth from 50 to 20 which caused our CI pipelines to fail with this error. Where this is an issue you might notice something like the following in the CI logs:
INFO:git.cmd:git describe --tags -> 128; stdout: '<OUTPUT_STREAM>'; stderr: 'fatal: No names found, cannot describe anything.'
This can be solved by: