theupdateframework / go-tuf

Go implementation of The Update Framework (TUF)
https://theupdateframework.com
Apache License 2.0
625 stars 105 forks source link

feat!: move rdimitrov/go-tuf-metadata to github.com/theupdateframework/go-tuf/v2 #583

Closed rdimitrov closed 8 months ago

rdimitrov commented 8 months ago

Description:

The following PR replaces the content of the existing master branch with the content of the https://github.com/rdimitrov/go-tuf-metadata.

It includes the following changes:

What's next

Motivated by https://github.com/theupdateframework/go-tuf/issues/485

Types of changes:

Description of the changes being introduced by the pull request:

Please verify and check that the pull request fulfills the following requirements:

rdimitrov commented 8 months ago

This is what I used to copy the content and its history -

#!/bin/bash

# Retrieve all commit hashes from the first commit onwards, in chronological order
commit_hashes=$(git log source/main --reverse --format="%H")

# Cherry-pick each commit from the source repository
for commit in $commit_hashes; do
    git cherry-pick $commit
    if [ $? -ne 0 ]; then
        echo "Cherry-picking commit $commit failed."
    fi
done
echo "All commits have been successfully cherry-picked"
kommendorkapten commented 8 months ago

So excited to see this! 🚀