How to upload projects to Code Cloud in Linux system

How to upload projects to Code Cloud in Linux system

Create a new project test1 on Code Cloud

Enter the following command to get the public key

Copy the public key and paste it into

Move to the file directory to be submitted under the Linux system.

Enter the command: git clone [email protected]:wangdeai/test1.git

git clone + ssh link

The ssh link is obtained as follows:

Copy the files to be uploaded to the project:

cp -r fresh test1/

Enter the test1 directory and check the status:

git status

Next we need to set up tracking

git add fresh/

Check the status:

git status

Write log: (explain the changes to the file)

git commit -m 'add fresh'

Just push and submit

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to upload local projects to Code Cloud in Android Studio (OSChina)
  • How to clone a project from Git to local in idea
  • Detailed graphic tutorial on uploading a new Android Studio project to Code Cloud via git
  • How to export projects on Code Cloud in Eclipse (graphic tutorial)
  • Methods and steps to deploy springboot project under Linux
  • Solution to 404 error when accessing a project deployed under Linux system
  • Specific steps to modify the default access project of Tomcat in Linux (must read)
  • Deploy nodejs project under linux (two ways)
  • Detailed explanation of using VS Code to compile and debug C++ projects in Linux
  • How to solve the error "Template does not exist" when deploying thinkphp project to Linux server
  • Deploy Python's Django project to Apache server under Linux
  • Using forever to auto-start Node.js project on Linux
  • How to deploy javaweb project to linux

<<:  Detailed explanation of Vue3.0 + TypeScript + Vite first experience

>>:  Tips and precautions for using MySQL index

Recommend

How to recover deleted MySQL 8.0.17 root account and password under Windows

I finished learning SQL by myself not long ago, a...

Example of javascript bubble sort

Table of contents 1. What is Bubble Sort 2. Give ...

MySQL deduplication methods

MySQL deduplication methods 【Beginner】There are v...

A brief analysis of the difference between FIND_IN_SET() and IN in MySQL

I used the Mysql FIND_IN_SET function in a projec...

Two ways to install Python3 on Linux servers

First method Alibaba Cloud and Baidu Cloud server...

Several reasons for not compressing HTML

The reason is simple: In HTML documents, multiple ...

26 Commonly Forgotten CSS Tips

This is a collection of commonly used but easily ...

Implementation of React page turner (including front and back ends)

Table of contents front end According to the abov...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

Example code for element multiple tables to achieve synchronous scrolling

Element UI implements multiple tables scrolling a...

Analysis and solution of the problem that MySQL instance cannot be started

Table of contents Preface Scenario Analysis Summa...

A quick guide to Docker

Docker provides a way to automatically deploy sof...