mac使用gitee
时间: 2024-02-19 21:53:44 浏览: 111
Typora图片上传.md
要在Mac上使用Gitee,可以按照以下步骤操作:
1. 安装Git客户端:在终端中输入命令`brew install git`,等待安装完成。
2. 配置Git:在终端中输入命令`git config --global user.name "Your Name"`和`git config --global user.email "email@example.com"`,将"Your Name"和"email@example.com"替换为你的用户名和邮箱。
3. 生成SSH密钥:在终端中输入命令`ssh-keygen -t rsa -C "email@example.com"`,将"email@example.com"替换为你的邮箱。一路回车即可,生成的密钥保存在~/.ssh目录下。
4. 将SSH密钥添加到Gitee:登录Gitee,在个人设置中找到SSH公钥,将~/.ssh/id_rsa.pub文件中的内容复制到其中。
5. 创建仓库并上传代码:在Gitee上创建一个新的仓库,然后在本地使用Git命令将代码上传到仓库中。
阅读全文