配置git连接远程码云仓库,并且码云仓库代码部署到服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置git连接远程码云仓库,并且码云仓库代码部署到服务器相关的知识,希望对你有一定的参考价值。

参考技术A ``ssh-keygen -t rsa -C “您的邮箱地址”``

Your identification has been saved in /Users/you/.ssh/id_rsa.

# Your public key has been saved in /Users/you/.ssh/id_rsa.pub.

cd ~/.ssh

查看公钥

cat id_rsa.pub

复制粘贴到码云上

到本地项目文件夹下,右键点击空白处,选择Git Bash Here,进入git窗口

一波操作后的页面

whereis git

yum install -y git

git version

eg: cd /home/www/test

git init

git config --global user.name "您的用户名称"

git config --global user.email "您的邮箱地址"

git remote add origin 自己的仓库地址

eg:git remote add origin https://gitee.com/***/**.git

ssh -v git@gitee.com 

然后输入 yes

我拉取的是master分支

git pull origin master

如果拉文件的时候报这个错误,那么我们需要生成ssh公钥

ssh-keygen -t rsa -C"xxxxx@xxxxx.com"

查看当前公钥,并且将公钥添加到码云后台的ssh公钥中

git branch --set-upstream-to=origin/码云本地分支 服务器本地分支

eg:git branch --set-upstream-to=origin/master master

git config --global credential.helper store

到此、配置完成

以上是关于配置git连接远程码云仓库,并且码云仓库代码部署到服务器的主要内容,如果未能解决你的问题,请参考以下文章

配置git ,上传到码云远程仓库

码云gitee远程代码仓库管理

码云gitee远程代码仓库管理

git连接gitee码云

git:将代码提交到远程仓库(码云)

git 添加码云远程仓库和上传到码云的命令