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

VMware vCenter 6.7 installation process (graphic tutorial)

background I originally wanted to download a 6.7 ...

Detailed explanation of the text-fill-color property in CSS3

What does text-fill-color mean? Just from the lit...

MySQL REVOKE to delete user permissions

In MySQL, you can use the REVOKE statement to rem...

Vue custom optional time calendar component

This article example shares the specific code of ...

Solution to the conflict between Linux kernel and SVN versions

Phenomenon The system could compile the Linux sys...

Explain how to analyze SQL efficiency

The Explain command is the first recommended comm...

Html tips to make your code semantic

Html semantics seems to be a commonplace issue. G...

Implementation of CSS3 button border animation

First look at the effect: html <a href="#...

Implementing the preview function of multiple image uploads based on HTML

I recently wrote a script for uploading multiple ...

Vue uses monaco to achieve code highlighting

Using the Vue language and element components, we...

MySQL full-text search Chinese solution and example code

MySQL full text search Chinese solution Recently,...

Examples of preview functions for various types of files in vue3

Table of contents Preface 1. Preview of office do...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Detailed explanation of the role of the new operator in Js

Preface Js is the most commonly used code manipul...