Difference between revisions of "Git"
Jump to navigation
Jump to search
| Line 12: | Line 12: | ||
==How to use == | ==How to use == | ||
# Connect to the VPN. | # Connect to the VPN. | ||
| − | # Clone the project, i.e. | + | # Clone the project, i.e. <syntaxhighlight lang="python" highlight="1,5-7"> |
| − | |||
git -c http.sslVerify=false clone https://10.8.0.26:3000/Eugene/QKD.git | git -c http.sslVerify=false clone https://10.8.0.26:3000/Eugene/QKD.git | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:48, 17 January 2023
Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code. In order to make this work, you must first configure git with your email address and your name that are registered in Gitea. To do this, open a terminal window and issue the commands:
Setup locally
git config --global user.email EMAIL
git config --global user.name "NAME"
How to use
- Connect to the VPN.
- Clone the project, i.e.
git -c http.sslVerify=false clone https://10.8.0.26:3000/Eugene/QKD.git