克隆仓库会在执行命令文件夹下新建仓库文件夹

1
git clone git@gitee.com:用户名/仓库名.git

仓库提交命令

1
2
3
git add .
git commit -m "操作目的"
git push origin(本地分支) 仓库分支

仓库ssh生成命令,生成后在c/Usr/用户名/.ssh/id_rsa.pub文件中

1
ssh-keygen –t rsa –C "git仓库邮箱"

配置仓库本地用户名

1
git config --global user.name "git用户名"

配置仓库本地邮箱

1
git config --global user.email "git登录邮箱"