Hi, the problem with "unknown revision" is happening because git history was rewritten. There are two projects which are kept in branches of the Windows WireGuard client project. Those are "github.com/lxn/walk" and "github.com/lxn/win" and branches for them are "pkg/walk" and "plg/walk-win" respectively. Both branches have a number of customization commits which are kept at the top of the git history. Hence sync with lxn's code is done with rebasing and then force pushing. So after the sync, old commit id is lost and replaced with a new one. Each time those branches are updated, you can also see the "mod: bump" commit in the main branch. All commits before that will not work anymore. Therefore old tags are not reliable too.
Probably, it can be fixed by keeping separate branch for at least every tag, so build on tags does not break. Though, it would be better to create a new branch on every update/sync. Another options to consider are maintaining the lxn in a separate repository or keep changes as a set of patches. Best, Vladyslav
