[2023 latest version] Tencent Cloud CODING platform usage tutorial (Pycharm/command: push local projects to CODING)

Table of contents

1. Introduction to CODING

url

2. Use of CODING

1. Create a project

2. Create a code repository

3. PyCharm: Push local projects to CODING

1. Manage remote

2. Submit

3. Push

4. Results

Fourth, use the command to push

1. Open the terminal

2. Initialize the Git repository

3. Add a remote warehouse

4. Add files to the staging area

5. Submit changes

6. Push


1. Introduction to CODING

        Tencent Cloud Coding Platform is a one-stop development collaboration platform launched by Tencent Cloud. It provides functions such as code hosting, project management, continuous integration and deployment, and aims to help teams collaborate efficiently and improve development efficiency.

        Through the Tencent Cloud CODING platform, you can create a code warehouse to manage your code and support multiple version control systems, such as Git and SVN. You can share code with team members and develop collaboratively. The platform provides powerful code hosting and version management functions, including code submission, branch management, merge requests, etc.

        In addition, the CODING platform also provides project management tools, which can create tasks, make plans, track progress, and facilitate team collaboration and project management. You can create task lists, Kanban boards, set milestones, and conduct discussions and comments to facilitate communication and collaboration among team members.

        Continuous integration and deployment is another important function. The CODING platform can be integrated with various CI/CD tools to achieve automated build, testing and deployment. You can configure automated processes to trigger builds and releases using triggers to speed up development and delivery.

url

DevOps_DevOps Solutions_One-stop DevOps_Developer Tools | Tencent Cloud CODING DevOps icon-default.png?t=N7T8https://coding.net/

2. Use of CODING

1. Create a project

        Choose to create a new project and fill in relevant information such as project name, description, etc.

2. Create a code repository

        Within the project, you can create a code repository to store and manage code. After selecting the project, create a new code repository in the code repository option. You can set the name, description, access permissions, etc. of the warehouse.

  • Copy the following URL:

3. PyCharm: Push local projects to CODING

1. Manage remote

  • Fill in the URL

  • Enter CONDING account password

2. Submit

3. Push

4. Results

        If all goes well, the code modification of the local project will be pushed to the corresponding code repository on the CODING platform.

Fourth, use the command to push

1. Open the terminal

       Open a command line tool (e.g. Git Bash, Terminal) in the root directory of your local project

        For the terminal opening method, please refer to the previous article:

[2023] n ways to open the terminal + Anaconda modifies the default installation path of the virtual environment + creates a virtual environment_anaconda modifies the installation location of the virtual environment_QomolangmaH's blog - CSDN blog icon-default.png?t=N7T8https://blog.csdn.net/m0_63834988/article/details /128691854?spm=1001.2014.3001.5502

2. Initialize the Git repository

git init

3. Add a remote warehouse

        Run the command:

git remote add origin <CODING仓库地址>

        Replace the address of the CODING warehouse with the actual warehouse address, this will associate the remote warehouse with the local warehouse.

4. Add files to the staging area

git add .

        Add all files to the Git staging area. If you only want to add a specific file, you can  . replace with the file path.

5. Submit changes

git commit -m "提交说明" 

6. Push

git push origin master 

        Push the local submission to the remote repository on the CODING platform. If you are using another branch locally instead of the master branch, you need to  master replace the name of the branch you actually use.

Guess you like

Origin blog.csdn.net/m0_63834988/article/details/132744512