浏览器搜索 github 或 直接打开网址 https://github.com 进入 github 如下账号创建页面
具体步骤可参考官网的教程地址:https://help.github.com/articles/create-a-repo/
如果一切顺利,输入邮箱、密码等,大约30 秒即可完成账号创建。
2. 创建仓储:仓储(repository),理解为管理各种文件的仓库。进入个人github页面,点击右上角头像,在下拉栏选
择 “Your repositories”, 随后页面跳到仓储面完成创建。
如创建仓储 blog, git 地址:https://github.com/user2items/blog.git
3. 创建本地3.1 安装 Git:首先我们需要先下载Git,这里最好下载最新版本的 Git,网址:https://git-scm.com/downloads, 安装时如果没有特殊需求,一直下一步就可以了,安装完成之后,双击打开Git Bash。
3.2 Git 设置:配置:cd XXX\user2items
git config --global user.name "此处为你的github的用户名"
git config --global user.email "此处为你的邮箱"
git config --global user.name "XXXXX"
git config --global user.email "XXXX.com"
这里输入的用户名和电子邮件是任意的,这些信息只是用来记录是谁进行了修改。
可以通过输入git config --list查看配置的信息。