Ubuntu下git使用
Posted DevLi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu下git使用相关的知识,希望对你有一定的参考价值。
- sudo apt-get install git //安装git
- git config --global user.name "github 用户名"
- git config --global user.email "注册时用的email"
- git config --global credential.helper cache //在一定的时间内在内存中保存代码
- git config --global credential.helper ‘cache --timeout=3600‘ //设置超时的时间
- 建立新的 repository
- 进入项目根目录
- git init //初始化一个空的Git repository
- touch README //建立README
- git add .
- git commit -m “第一次提交,创建项目。”
- git remote add origin [email protected]:yourname/xxx.git
- git push -u origin master
- //这里可能发生错误:无法推送一些引用到 ‘[email protected]:yourname/xxx.git‘
- 提示:更新被拒绝,因为远程版本库包含您本地尚不存在的提交。这通常是因为另外
- 提示:一个版本库已向该引用进行了推送。再次推送前,您可能需要先整合远程变更
- 提示:(如 ‘git pull ...‘)。解决方法:git push -u origin +master
以上是关于Ubuntu下git使用的主要内容,如果未能解决你的问题,请参考以下文章