Github的使用心得
- 安装Git,使用命令 “sudo apt-get install git”
- 配置Git的配置文件,username和email,这里的username 和 email是你注册的Github账号。
git config --global user.name "lyzsysu"
git config --global user.email "xxx@xx.com"
- 生成SSH key,并在Github账号上黏贴,具体可以参考百度。
- cd ~/.ssh
- ssh-keygen -t rsa -b 4096 -C “your_email@example.com”
- eval $(ssh-agent -s)
- ssh-add ~/.ssh/id_rsa
- 在github账户上黏贴id_rsa.pub的内容到new key里面
- 最后测试:
- ssh -T git@github.com
- 上传本地仓库的代码到指定的仓库
- 到想要上传代码所在目录, 然后git init
- git remote add origin git@github.com:lyzsysu/test.git
- git add filename (这里你可以观察一下 git status
- git commit -m ‘这里打一个注释’ (commit是提交的意思,表示你确认要执行上述的操作,如果没有这个commit是无法上传的。
- commit完后,git status 重新恢复到原来的 clean状态。
- 最后一步 git push origin master (我的理解是 origin是本地仓库名, master是你要上传的那个版本号。
- 如果出现了push不上,可能是因为没有pull原版本下来