创建本地Git并提交到码云
Posted perfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建本地Git并提交到码云相关的知识,希望对你有一定的参考价值。
使用Git Bash创建本地Git全局用户名,提交远程代码时将以此用户名显示
git config --global --replace-all user.email "[email protected]"
git config --global --replace-all user.name "itoracle"
在码云上创建一个git:https://gitee.com/itdb/all.git
进入D盘
cd /d
下载远程git到本地
git clone https://gitee.com/itdb/all.git
#在本地添加一个远程git配置all,以后all就代表了远程的 https://gitee.com/itdb/all.git
git remote add all https://gitee.com/itdb/all.git
配置SSH
cd /c/Users/thinkpad
ssh-keygen -t rsa -C "[email protected]"
cd .ssh
cat id_rsa.pub
$ cat id_rsa.pub
ssh-rsa AAAAB3……n.com
将本地公钥复制到以下地方
设置-->安全设置-->SSH公钥
复制文件到git目录并上传的远程git,首次提交需要加-u
cp -r /e/all/fxzonghe_cmd /d/all
cd /d/all
git add .
git status
git commit -m "ppcore first commit"
将本地git推送到远程all的master分支
git push -u all master
第二次提交,没有使用-u参数
cd /d/all
git add .
git status
git commit -m "all second commit"
git push all master
以上是关于创建本地Git并提交到码云的主要内容,如果未能解决你的问题,请参考以下文章