首页 > 代码库 > centos中git使用

centos中git使用

先用yum install git进行安装,然后退出用普通用户登录。

技术分享

登录GitHub,设置ssh keys,将~/.ssh/id_rsa.pub中的内容复制到key中

git clone git@github.com:tuhooo/apue.git就可以克隆了

克隆之后:

增加用户名和邮箱的配置

git config --global user.name "tuhooo"
git config --global user.email tuhooo@163.com

git add 文件/文件夹

git commit 文件/文件夹 -m "提交时附加信息"

git push     // 推送

centos中git使用