Git click and pull encrypted?

You have credentials to prevent unauthorized access to your git repository server (or for github, bitbucket), but it just doesn't allow someone to pull, push, etc. without proper authorization.

However, is there any contents of the clip, push, etc., so that someone doesn’t sniff the packets and get the secret code from your repository? If it exists, how can you enable it?

+5
source share
2 answers

Git use several protocols . Read more about this here: https://git-scm.com/book/ch4-1.html .

SSH is a secure protocol so you can use it.
As you can see, the last step before transferring content is encryption and vice versa. enter image description here


enter image description here

+2
source

Git can communicate using several different network protocols - the HTTP, HTTPS, SSH, and Git protocols. HTTPS and SSH provide encryption, but HTTP and Git do not. Most well-known Git providers, such as GitHub, use HTTPS and therefore are encrypted. If you are setting up your internal environment, complete instructions for implementing HTTPS or SSH can be found here:

https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server

+3
source

Source: https://habr.com/ru/post/1242762/


All Articles