Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prove the ownership of a public git/github repo?

Tags:

git

github

How can I clearly prove to other persons (for example very picky employers) that I'm the creator of a public GitHub repo (beside avatar pictures etc.)?

Does Git have something like a key file that proves the authencity of a repo or is there a best practice for doing so?

like image 930
Sliq Avatar asked Jan 14 '23 00:01

Sliq


1 Answers

You could add a signed tag to the repository.

This is a gpg signature, so it can be cryptographically verified. I wrote about how to go about it here

like image 128
Abizern Avatar answered Jan 16 '23 02:01

Abizern