File: README.md

package info (click to toggle)
gittuf 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,692 kB
  • sloc: python: 85; makefile: 58; sh: 1
file content (16 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Debug Helpers

This directory contains tools or artifacts used by the gittuf developers during
debugging.

## Debugging gittuf with Git 2.34.1

Build and run the container from the root of the gittuf repository.

```bash
docker build -t debug-gittuf-2-34-1 -f debug/Dockerfile.Git_2_34_1 .
docker run -it --rm -v $PWD:/gittuf -w /gittuf debug-gittuf-2-34-1
```

As the gittuf repository is mounted as a volume, you can make changes on the
host and iteratively debug within the container.