A simple tutorial for gitee registration and use

Table of contents

1. What is gitee?

2. How to register gitee?

3.gitee creates a warehouse

4. How does gitee submit code?

5. Three axes of git


1. What is gitee?

  • Git-based code hosting and R&D collaboration platform
  • It can host personal or company code and open source projects. There are github abroad and gitee in China
  • GitHub often has inaccessible problems. It is recommended to use gitee
  • URL: https://gitee.com/

2. How to register gitee?

  • Open gitee official website
  • If you don’t have an account, click Register, just fill in the prompts
  • For non-email registration, add your own e-mail in Personal-Settings (currently it seems to be changed to mobile phone number registration, pay attention to add your own e-mail after registration)
  • Login after registration

3.gitee creates a warehouse

①Step 1: Click the + sign in the upper right corner; Step 2: Click to create a new warehouse

 

②Step 1: Enter the name of the warehouse in the red box, and you can take whatever you want; Step 2: Write an introduction for the warehouse, and introduce what the warehouse is used for. Step 3: Don’t worry about other things, just click Create

 

③The following is the created warehouse:
     the red box represents the address of your own warehouse, which is used when configuring IDEA

 

④ There is a management in the upper right corner, click to make some modifications

    For example: set the project open source in this location to facilitate future operations

    Here you can also make other settings and modifications to your warehouse

 

4. How does gitee submit code?

  • 2 tools are required
  • There is a sequence of installation (first ① and then ②)

        ① Client: git for windows

        ② Its graphical interface tool: TortoiseGit 

       Download from the official website, or private message me to send the installation package

5. Three axes of git

  • add - add code to the local repository
  • commit - Submit the code to the warehouse
  • push - Push this add operation to the remote warehouse
  • Does gitee only have three axes?

Guess you like

Origin blog.csdn.net/qq_62799214/article/details/131606041