Chapter 9 Idea integrates gitee (code cloud)

Section 1 Introduction to Code Cloud

As we all know, the GitHub server is located abroad. If GitHub is used as a project hosting website, if the Internet speed is not good, it will seriously affect the user experience and may even prevent you from logging in. In response to this situation, you can also use the domestic project hosting website - Code Cloud.

Code Cloud is a Git-based code hosting service center launched by Open Source China. The website is https://gitee.com/. The usage method is the same as GitHub. Moreover, it is also a Chinese website. If your English is not very good, it is the best. choose.

Section 2 Code Cloud Account Registration and Login

Enter the code cloud official website address: https://gitee.com/, click to register Gitee. If you have an account, log in directly.

Section 3 idea integrated code cloud

IDEA installs the code cloud plug-in.
Idea does not come with the code cloud plug-in by default. Our first step is to install the Gitee plug-in.
As shown in the picture, search for Gitee in the Idea plug-in store, and then click the Install button on the right. ~
Insert image description here

Insert image description here

Section 4: Set up Code Cloud account in IDEA

If your gitee is not bound to an email address, first bind the email address.
Only when the email address is bound can you use git to submit code to gitee (setting up a global signature in the previous chapter)

1.gitee bind email

Insert image description here
Insert image description here

2. Idea integrates gitee

Insert image description here

Section 5 Engineering Level Operations

1. Idea shares projects to gitee

This step actually takes two steps:
1. Create a remote repository named the project name on gitee
2. Push the project to the remote repository
Insert image description here

Insert image description here
Insert image description here
Insert image description here
The operations of push and pull are basically the same as github.
Note: When pushing and pulling, be sure to change the remote warehouse address of gitee.
Clone is also consistent with github.

Section 6 Code Cloud Copy GitHub Project

1.gitee copies github project

Code Cloud provides the function of directly copying GitHub projects to facilitate our project migration and downloading. The specific operations are as follows:
Insert image description here

Enter the address of the remote warehouse
Insert image description here

2. Update the latest content of github in the github project imported by gitee

Insert image description here

Guess you like

Origin blog.csdn.net/wyr1235/article/details/128854691