Github客户端配置和使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Github客户端配置和使用相关的知识,希望对你有一定的参考价值。
Windows下Github客户端的配置和使用步骤如下
- 在 Github 上创建 repository,指定名称、README.md 和 LICENSE 文件;
- 安装Git客户端,下载地址:https://git-for-windows.github.io/,安装完打开Git客户端(Git bash);
- 配置SSH密钥:在 Git bash 中输入命令
ssh-keygen -t rsa -C "[email protected]"
打开并复制该文件所有内容,登录Github,打开Account Settings,添加SSHKey
输入 ssh -T [email protected] 校验是否成功,可能会提示无关信息,输入yes确认 - 创建本地Maven工程(需要同步到Github的);
- 打开Git客户端(Git bash)切换到Maven工程根目录
依次执行以下命令git init //初始化 git config --global user.name "name" //设置用户名 git config --global user.email "email" //设置邮箱 git remote add [email protected]:ywlaker/uc-web.git //添加远程仓库,要替换成自己的用户名和仓库名 git pull origin master //把仓库的资料拉过来,比如readme文件和license文件 git add ./* //添加本地工程文件 git commit -m "comment" //提交到缓存 git push -u origin master //提交到远程仓库
以上是关于Github客户端配置和使用的主要内容,如果未能解决你的问题,请参考以下文章