bug with git describe --dirty --broken
From: Paul Millar <hidden>
Date: 2024-06-20 11:24:12
Thank you for filling out a Git bug report! Please answer the following questions to help us understand your issue. What did you do before the bug happened? (Steps to reproduce your issue) mkdir test-container cd test-container cat >Dockerfile <<EOF FROM docker.io/debian:bookworm-slim WORKDIR /work RUN apt-get update && apt-get -y install git EOF podman build -t test-image . mkdir test-repo cd test-repo git init echo "Hello, world" > README git add README git commit -m "Initial commit" README git tag v1.0.0 git describe --tags --dirty --broken podman run -v `pwd`:/work --rm -it --entrypoint '["/usr/bin/git", "describe", "--tags", "--dirty", "--broken"]' test-image What did you expect to happen? (Expected behavior) I expect git, when running in the container, to identify that the repo is clean. What happened instead? (Actual behavior) When run within the container, git identifies the repo as dirty. The 'podman run' command returns v1.0.0-dirty What's different between what you expected and what actually happened? The 'git' command is running within the container. Anything else you want to add: I believe the problem comes from two parts. First, when running within the container, the files seemed to be owned by user root. 12:51 $ ls -l total 4 -rw-r--r-- 1 paul paul 13 Jun 20 12:45 README 12:49 $ podman run -v `pwd`:/work --rm -it --entrypoint '["ls", "-l"]' test-imag e total 4 -rw-r--r-- 1 root root 13 Jun 20 10:45 README This results in an inconsistency between the ownership information contained within the .git/index file and the ownership information on the filesystem when git is run within the container. Second, when 'git describe' is run with the '--broken' flag then the '.git/index' file is not updated. The ownership inconsistency then triggers git's belief that the repo is dirty. If the '--broken' flag is remove from the 'git describe' command then running the command directly and from the container give the same output. 12:51 $ git describe --tags --dirty v1.0.0 12:55 $ podman run -v `pwd`:/work --rm -it --entrypoint '["/usr/bin/git", "describe", "--tags", "--dirty"]' test-image v1.0.0 In this case, running the 'git describe' command (both in the container and directly) will update the '.git/index' file, and the correct output is presented. Please review the rest of the bug report below. You can delete any lines you don't wish to share. [System Info] git version: git version 2.39.2 cpu: x86_64 no commit associated with this build sizeof-long: 8 sizeof-size_t: 8 shell-path: /bin/sh uname: Linux 6.1.0-21-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.90-1 (2024-05-03) x86_64 compiler info: gnuc: 12.2 libc info: glibc: 2.36 $SHELL (typically, interactive shell): /bin/bash [Enabled Hooks] not run from a git repository - no hooks to show