git 使用过程中遇到问题
$ git push -u origin master git@gitee.com: Permission denied (publickey). fatal: Could not read from remote repository.
这个是说没有拉取权限,这个时候,就需要配置ssh-key
先配置好账户/项目的SSH公钥
git config --global user.name "用户名称"
git config --global user.email "注册邮箱"
根据注册邮箱生成key
ssh-keygen -t rsa -C "1015608635@qq.com"
连续两次回车
生成地址: /c/Users/Administrator/.ssh/id_rsa
复制所有内容
保存即可连上项目路径
提交内容显示拒绝的时候,先拉取项目文件,然后,在提交