filmov
tv
Verified Commits on GitHub from Windows PC ( GPG Keys ) ✅
Показать описание
In this video I have configured my windows machine to sign my git commits using GPG keys 😎
00:00 🔐 Introduction to Signed Commits
00:31 ✅ Verified Commits vs Unverified Commits on Github
03:25 👨💻 Download and Install GPG4WIN software
04:36 ⚙ Generate GPG Key and Configure your Github Account
09:54 🛠 Configure Git on Windows 10 to sign commits using GPG key
13:18 👷♂️ Create signed commits using Git
16:56 🙏 Thank You for watching this video
Signed commits are marked as verified ✔ on GitHub so other people can be confident that changes are coming from a trusted source 🚀
# Download and install GPG for windows
# Create GPG Key
```
gpg --full-generate-key
```
# List GPG Key with key IDs
```
gpg --list-secret-keys --keyid-format LONG
sec rsa4096/YOUR-KEY-ID 2020-06-18 [SC]
...
# Export your public key
```
gpg --armor --export YOUR-KEY-ID
```
# Add GPG key to Github account
# Configure Git on windows
```
```
# List global git config
```
git config --global --list
```
00:00 🔐 Introduction to Signed Commits
00:31 ✅ Verified Commits vs Unverified Commits on Github
03:25 👨💻 Download and Install GPG4WIN software
04:36 ⚙ Generate GPG Key and Configure your Github Account
09:54 🛠 Configure Git on Windows 10 to sign commits using GPG key
13:18 👷♂️ Create signed commits using Git
16:56 🙏 Thank You for watching this video
Signed commits are marked as verified ✔ on GitHub so other people can be confident that changes are coming from a trusted source 🚀
# Download and install GPG for windows
# Create GPG Key
```
gpg --full-generate-key
```
# List GPG Key with key IDs
```
gpg --list-secret-keys --keyid-format LONG
sec rsa4096/YOUR-KEY-ID 2020-06-18 [SC]
...
# Export your public key
```
gpg --armor --export YOUR-KEY-ID
```
# Add GPG key to Github account
# Configure Git on windows
```
```
# List global git config
```
git config --global --list
```
Комментарии