gitee 码云上传

gitee 码云上传

git安装教程

下载地址:https://npm.taobao.org/mirrors/git-for-windows/
参考教程:https://gitee.com/niit-cs/computational-thinking#/niit-cs/computational-thinking/blob/master/labs/test/test.md

相关配置

  1. 右键打开Git Bash,输入如下命令,配置git操作的用户名、邮箱。
    gitee 码云上传_第1张图片
git config --global user.name "你的名字或昵称(gitee主页左上角你的名字)"
git config --global user.email "你的邮箱(注册gitee用的邮箱)"
  1. 配置 ssh 公钥

​ 在Git Bash中输入如下命令,生成SSH key。

ssh-keygen -t rsa -C "你的邮箱"
  1. 输入以下命令,打印刚才生成的SSH key
cat ~/.ssh/id_rsa.pub
  1. 主页右上角 「个人设置」->「安全设置」->「SSH公钥」->「添加公钥」 ,复制生成的 public key,添加到当前账户中。

  2. 测试SSH key是否配置成功

ssh -T [email protected]

​ 输出:Hi Peng! You’ve successfully authenticated, but GITEE.COM does not provide shell access. 即为成功。

下载文件

打开自己账号下的仓库,点击 “克隆/下载” 按钮,选择 “SSH”, 点击“复制”

git clone SSH

ex:
git clone [email protected]:peng-chongle/yolov5-fire.git

上传文件

在要上传的文件夹下执行

git add . #将当前目录所有文件添加到git暂存区

git commit -m "test commit" #提交并备注提交信息

git push #将本地提交推送到远程仓库

你可能感兴趣的:(日常问题记录,git,github)