Gitee is a well-known code hosting platform in China. Small businesses, open source developers and many other people often choose to manage their code on Gitee. Uploading projects on Gitee is very simple and easy to get started. Below we will introduce in detail how to upload projects to the gitee warehouse.
First of all, if you have not registered a Gitee account, you can register a Gitee account through the following link: https://gitee.com/signup. Follow the steps to fill in the relevant information and complete the registration.
After logging in to your Gitee account, go to the homepage. You can see a " " sign in the upper right corner of the page. Click the icon to choose to create a project.
Next, fill in the project name, description, select open source license and other information, and you can choose whether to create a README.md file. Finally, click the "Create Project" button to create it successfully.
After creating the warehouse, we start uploading the project code to Gitee. You can see the created warehouse on the page. Click to enter the interface corresponding to the warehouse, and you can see the file directory of the warehouse.
Select the file to be uploaded in the file directory of the warehouse, then click the "Upload File" button, select the local file to upload to the Gitee warehouse.
If you want to upload the entire project folder, you can right-click the folder and select "Upload to Gitee".
Some developers prefer to use the command line to upload code. Gitee also provides corresponding command line tools to help developers upload code faster.
To upload code through the Git command line, you need to first generate an SSH public key in the local Git environment, and then set the SSH key in the Gitee account.
Generate SSH public key command:
$ ssh-keygen -t rsa -C "your_email@example.com"
Upload code command:
$ git add . $ git commit -m "initial" $ git remote add origin git@gitee.com:username/repo.git $ git push -u origin master
In addition to what Gitee provides In addition to the web page upload and command line upload methods, you can also use third-party tools to achieve uploading. For example, Git client, SourceTree, etc.
To use the Git client to upload code, you need to create a token in the Gitee repository first. Go to the Gitee warehouse homepage, select "Warehouse Settings" = > "Access Token" - > "How to Create a Token" and follow the prompts.
Next, select the project in the local Git client and click "Push" or "Push to Gitee" to upload.
Summary
As can be seen from the above steps, uploading projects on Gitee is very simple. Whether it is uploaded through web pages, command lines, or third-party tools, it is all based on Git operations. , can realize operations such as uploading, management, and traceability. Therefore, you can choose the upload method that suits you best based on your personal preferences, thereby managing your code more efficiently.
The above is the detailed content of How to upload projects to gitee warehouse. For more information, please follow other related articles on the PHP Chinese website!