赞
踩
1、注册 github 账号并创建仓库
github官网地址:https://github.com
创建仓库(免费用户只能建公共仓库)
2、安装 git 和 ssh(配置 GitHub,需要 ssh key)
sudo apt install git ssh
3、配置 GitHub
step1、在本地生成 ssh key
ssh-keygen -t rsa -C "your_email@youremail.com"
"your_email@youremail.com" 为 GitHub 注册邮箱,之后会提示确认保存路径和输入密码,一般一路回车即可,成功后会在 /home/your_pc/ 目录下生成 .ssh/ 目录,生成的 key 在 id_rsa.pub 文件中
step2、在 GitHub 添加 step1 生成的 ssh key
step3、验证 GitHub Key 是否添加成功
ssh -T git@github.com
首次验证会提示是否 connect,输入 yes,会提示:You've successfully authenticated, but GitHub does not provide shell access ,表示已成功连上 GitHub。
4、配置 git
当把本地仓库上传 GitHub 上,每次 commit 时,GitHub 会记录每条 commit 的 user.name 和 user.email,所以在上传仓库之前还需要加以配置:
- git config --global user.name "your name"
- git config --global user.email "your_email@youremail.com"
5、为本地仓添加远程仓并上传文件
可根据自己的具体情况添加远程仓库,其中 your_name 和 your_repo 分别为 GitHub 的用户名和需要关联的 GitHub 上的仓库。
a 新建一个本地仓,并关联远程仓
- git init
- git add filename
- git commit -m "first commit"
- git remote add origin https://github.com/your_name/your_repo.git
- git push -u origin master
b 本地仓库已存在
- git remote add origin https://github.com/your_name/your_repo.git
- git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。