Source code download from GitHub and Gitee

1. Use the clone command to download

If the Git environment is installed locally, you can directly use the git clone command on the command line to download all the files in the warehouse to the local.
Download the source code through GitHub and execute the following command:

git clone https://github.com/******.git

The following download link can be viewed from the project image below:
GitHub link:
:GitHub download

Gitee link (the same three steps):
insert image description here
Then open the cmd command line, and then switch to the corresponding directory. For example, download to the java directory of the D drive, then first execute cd to switch to this directory, and execute the git clone command.
Wait for the file to download, and after all the downloads are complete, you can see all the source code of the project in the java directory. If the download using the GitHub link is slow, you can perform the git clone operation through the domestic Gitee link.

2. Download the source code through the open source website

In addition to downloading via the command line, you can also choose a more direct way. Both GitHub and Gitee open source platforms provide corresponding download functions, and you can directly click the corresponding download button in the warehouse to download the source code.
GitHub:
insert image description here
Gitee:
insert image description here
Unzip after the download is complete, and finally import it into the editor for development or modification. Downloading the source code from the Gitee website will be faster, but downloading the source code on the Gitee website requires an additional step of verification.
Finally, what I want to say is that many open source projects are incomplete, without complete documentation, or lack of front-end pages, dependencies, or database SOL files. If it is used for learning, you may not be able to run and see the effect after a long time of tinkering (it is really hard to describe). But there are many open source tools above that are still very useful, and the documentation is complete, which is really delicious!

Guess you like

Origin blog.csdn.net/LingDIHong/article/details/130140390