Centos7中安装Git并连接使用GitHub基本操作
2021/6/4 7:25:06
本文主要是介绍Centos7中安装Git并连接使用GitHub基本操作,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、安装git
1.最新git源码下载地址:
https://github.com/git/git/releases
https://www.kernel.org/pub/software/scm/git/
安装git
yum install git
查看yum源仓库Git信息
yum info git
2.安装依赖库
[root@wugenqiang ~]# yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel [root@wugenqiang ~]# yum install gcc-c++ perl-ExtUtils-MakeMaker
3.如果原有的git版本过低,移除默认安装的旧版git
[root@wugenqiang ~]# git --version ## 查看自带的版本git version 1.8.3.1 [root@wugenqiang ~]# yum remove git ## 移除原来的版本
4.下载&安装
[root@wugenqiang ~]# cd /usr/src [root@wugenqiang src]# wget https://www.kernel.org/pub/software/scm/git/git-2.18.0.tar.gz
5.解压
[root@wugenqiang ~]# tar xf git-2.18.0.tar.gz
6.配置编译安装
[root@wugenqiang ~]# cd /usr/src [root@wugenqiang src]# ls debug git-2.18.0 kernels [root@wugenqiang src]# cd git-2.18.0/ [root@wugenqiang git-2.18.0]# [root@wugenqiang git-2.18.0]# make configure [root@wugenqiang git-2.18.0]# ./configure --prefix=/usr/git ##配置目录 [root@wugenqiang git-2.18.0]# make profix=/usr/git [root@wugenqiang git-2.18.0]# make install
7.加入环境变量
[root@wugenqiang ~]# echo "export PATH=$PATH:/usr/git/bin" >> /etc/profile [root@wugenqiang ~]# source /etc/profile
8.检查版本
[root@wugenqiang ~]# git --version git version 2.18.0
二、生成SSH密钥
$ ssh-keygen -t rsa -C “your email address”
[root@wugenqiang ~]# ssh-keygen -t rsa -C "2422676183@qq.com"
results:
三、添加密钥到GitHub
打开 Github,登录自己的账号后
点击自己的头像->settings->SSH And GPG Keys->New SSH key
将本地 id_rsa.pub 中的内容粘贴到 Key 文本框中,随意输入一个 title(不要有中文),点击 Add Key 即可
results:
四、centos里测试验证
[root@wugenqiang ~]# ssh git@github.com
results:
Hi wugenqiang! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
表明验证成功
五、git常用命令参考
git remote -v/--verbose:显示出详细的url地址名和对应的别名.
git clone <address>:复制代码库到本地;
git add <file> ...:添加文件到代码库中;
git rm <file> ...:删除代码库的文件;
git commit -m <message>:提交更改,在修改了文件以后,使用这个命令提交修改。
git pull:从远程同步代码库到本地。
git push:推送代码到远程代码库。
git branch:查看当前分支。带*是当前分支。
git branch <branch-name>:新建一个分支。
git branch -d <branch-name>:删除一个分支。
git checkout <branch-name>:切换到指定分支。
git log:查看提交记录(即历史的 commit 记录)。
git status:当前修改的状态,是否修改了还没提交,或者那些文件未使用。
git reset <log>:恢复到历史版本。
六、Git实例
操作步骤:
1、远程仓库README.git为空,把本地代码上传到远程仓库
echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:******/README.git
git push -u origin master
2、更新本地代码到远程仓库
git add README.md
git commit -m "first commit"
git push -u origin master
3、获取远程仓库中的代码到本地
git clone git@github.com:*****/README.git
4、从远程仓库同步代码更新本地代码
git pull origin master
echo "# bigdata" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/wugenqiang/bigdata.git git push -u origin master
具体演示:
[root@wugenqiang ~]# cd study/git_code/bigdata/ [root@wugenqiang bigdata]# git init 已初始化空的 Git 仓库于 /root/study/git_code/bigdata/.git/ [root@wugenqiang bigdata]# ls -a . .. .git [root@wugenqiang bigdata]# touch readme.md [root@wugenqiang bigdata]# echo "# Test upload" >> readme.md [root@wugenqiang bigdata]# git add readme.md [root@wugenqiang bigdata]# git commit -m "bigdata upload first file:readme.md" [master(根提交) 19c5a4d] bigdata upload first file:readme.md Committer: root <root@wugenqiang.learner.linux> 您的姓名和邮件地址基于登录名和主机名进行了自动设置。请检查它们正确 与否。您可以对其进行设置以免再出现本提示信息。运行如下命令在编辑器 中编辑您的配置文件: git config --global --edit 设置完毕后,您可以用下面的命令来修正本次提交所使用的用户身份: git commit --amend --reset-author 1 file changed, 1 insertion(+) create mode 100644 readme.md [root@wugenqiang bigdata]# cat readme.md # Test upload [root@wugenqiang bigdata]# git remote add origin https://github.com/wugenqiang/bigdata.git [root@wugenqiang bigdata]# git push -u origin master Username for 'https://github.com': wugenqiang Password for 'https://wugenqiang@github.com': 枚举对象: 3, 完成. 对象计数中: 100% (3/3), 完成. 写入对象中: 100% (3/3), 243 bytes | 121.00 KiB/s, 完成. Total 3 (delta 0), reused 0 (delta 0) To https://github.com/wugenqiang/bigdata.git * [new branch] master -> master 分支 'master' 设置为跟踪来自 'origin' 的远程分支 'master'。 [root@wugenqiang bigdata]# git pull origin master 来自 https://github.com/wugenqiang/bigdata * branch master -> FETCH_HEAD 已经是最新的。
results:
这篇关于Centos7中安装Git并连接使用GitHub基本操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解