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

Detailed use cases of MySql escape

MySQL escape Escape means the original semantics ...

How to define input type=file style

Why beautify the file control? Just imagine that a...

Solution to Vue's inability to watch array changes

Table of contents 1. Vue listener array 2. Situat...

Several magical uses of JS ES6 spread operator

Table of contents 1. Add attributes 2. Merge mult...

MySQL data insertion efficiency comparison

When inserting data, I found that I had never con...

Linux kernel device driver proc file system notes

/***************** * proc file system************...

Explanation of building graph database neo4j in Linux environment

Neo4j (one of the Nosql) is a high-performance gr...

JavaScript event capture bubbling and capture details

Table of contents 1. Event Flow 1. Concept 2. DOM...

mysql5.5 installation graphic tutorial under win7

MySQL installation is relatively simple, usually ...

How to create a child process in nodejs

Table of contents Introduction Child Process Crea...

A brief introduction to VUE uni-app basic components

1. scroll-view When using vertical scrolling, you...

The vue project realizes drawing a watermark in a certain area

This article shares with you how to use Vue to dr...