Gitee(码云)使用Git

初次使用需要,生成ssh-key

1 配置用户名

git config --global user.name "realiot"

2 配置邮箱,即gitee的账号

git config --global user.email "[email protected]"

3 消除乱码

git config --global gui.encoding utf-8

git config --global core.quotepath off

4 生成ssh-key

ssh-keygen -t rsa -C "[email protected]"

5 查看ssh-key

cat ~/.ssh/id_rsa.pub

 

普通操作

Gitee(码云)使用Git_第1张图片拉取

 

  • 使用VScode打开当前文件夹后,使用git工具添加注释(使用其他方式添加注释也可以)

Gitee(码云)使用Git_第2张图片

  • git push -u origin master -f 强制推送并替换现有云端文件

 

你可能感兴趣的:(高效开发)