linux下github使用

 1 Linux下Git和GitHub环境的搭建

    第一步: 安装Git,使用命令 “yum  install git”

    第二步: 创建GitHub帐号

    第三步: 生成ssh key,使用命令 “ssh-keygen -t rsa -C "[email protected]"”,your_email是你的email

 默认在用户的家目录下/root/.ssh/id_rsa.pub文件里面

第四步: 回到github,进入Account Settings,左边选择SSH Keys,title随便填,Add SSH Key填写/root/.ssh/id_rsa.pub 中内容 。

第五步:在终端ssh -T [email protected]  若出现 Are you sure you want to continue connecting (yes/no)?  输入yes 。
最后,若出现“Hi Willido! You've successfully authenticated, but GitHub does not provide shell access.”的信息,则表示已成功连上GitHub

    第六步: 配置Git的配置文件,username和email

                 git config --global user.name "your name"   //配置用户名

                 git config --global user.email "your email"    //配置email 

 2 利用Git从本地上传到GitHub

    第一步: 进入要所要上传文件的目录输入命令 “git init”

    第二步: 创建一个本地仓库,使用命令 “git remote add origin [email protected]:yourName/yourRepo.git”
                  youname是你的GitHub的用户名,yourRepo是你要上传到GitHub的仓库

    第三步: 比如你要添加一个文件xxx到本地仓库,使用命令 "git add xxx",可以使用“git add .”自动判断添加哪些文件

                  然后把这个添加提交到本地的仓库,使用命令 "git commit -m "说明这次的提交

                  最后把本地仓库提交到远程的GitHub仓库,使用命令 "git push origin master"

 


你可能感兴趣的:(linux学习过程)