Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 509 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 509 Bytes

go-git-fixtures

git repository fixtures used by go-git

Adding new Fixtures

Adding new pack fixtures

  1. Get the .idx and .pack files from the repository:
git clone https://<repository>
cd <repository_name>
git checkout <REF>
git gc

ls .git/objects/pack/
  1. Copy them into /data.
  2. Add a new entry in fixtures.go:
{
	Tags:         []string{"packfile", "<TAG_TO_REFER_TO>"},
	PackfileHash: "<PACK_HASH>",
}
  1. Run make generate.