码云使用的基本步骤

mac2026-02-24  6

创建仓库

 

 

然后把工程的信息填写一下

 

 

远程拉取项目

git clone xxxx.git

 

 

谁修改的

git config --global user.name "xxx"

码云账号

git config --global user.emali "xx@xx.com"

添加到仓库(git add xxx 提交单个文件)

git add .

解释提交代码

git commit -m '内容'

提交到码云

git push origin master

最新回复(0)