一、新建代码库
注册GitHub账号,并登录GitHub
点击右上角“+”→New repository
- 进入如下页面:按照要求填写完成后,点击按钮创建代码库创建成功。
二、上传代码至GitHub仓库
安装git
如果没有安装过Git的点击链接安装[Git](https://git-scm.com/downloads),选择对应的版本进行安装,已安装过的可以直接跳到下一步,安装过程中没有特殊需求的直接下一步就可以了。
创建SSH公钥并添加至GitHub
- 安装完毕git以后,在本地新建/选择目录→右键→Git Bash Here
ssh-keygen -t rsa -C "your_email"
首先 `ssh-keygen` 会确认密钥的存储位置(默认是 `.ssh/id_rsa`),然后它会要求你输入两次密钥口令。 如果你不想在使用密钥时输入口令,将其留空即可。 然而,如果你使用了密码,那么请确保添加了 `-o` 选项,它会以比默认格式更能抗暴力破解的格式保存私钥。 你也可以用 `ssh-agent` 工具来避免每次都要输入密码。
现在,进行了上述操作的用户需要将各自的公钥发送给任意一个 Git 服务器管理员 (假设服务器正在使用基于公钥的 SSH 验证设置)。 他们所要做的就是复制各自的 .pub
文件内容,并将其通过邮件发送。 公钥看起来是这样的:
cat ~/.ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU
GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3
Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA
t3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/En
mZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbx
NrRFi9wrf+M7Q== schacon@mylaptop.local
- 复制生成的密钥,点击右上角头像→setting,左侧菜单切换到SSH and GPG keys→New SSH key
-
检查是否连接成功
在git bash下输入一下代码,如果提示:You’ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github了。
ssh -T git@github.com
三、把本地仓库传到github
- 首先为git配置全局用户信息,如果不配置,上传代码时会提示
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'Administrator@xxxx.(none)')
bash: Author: command not found
- 下载远程仓库至本地
git clone git@github.com:478981890/uniBarcode.git
- 进入本地仓库 并添加远程仓库
cd uniBarcode/
我们在之前的章节中已经提到并展示了 git clone
命令是如何自行添加远程仓库的, 不过这里将告诉你如何自己来添加它。 运行 git remote add <shortname> <url>
添加一个新的远程 Git 仓库,同时指定一个方便使用的简写:
git remote add origin git@github.com:478981890/uniBarcode.git
如果出现 error: remote origin already exists. 则使用:
git remote rm origin
git remote add origin git@github.com:478981890/uniBarcode.git
- 添加文件并上传文件至远程仓库
git add README.me
git commit -m "添加文档"
git push -u origin master -f
更多git命令,请访问git 文档