阿宁的linux学习----Git安装

it2024-12-18  11

这是我学习linux的过程,每天都会更新所学习的知识总结,每个例子都是我自己的亲手实践的,作为新人的我希望各位大佬提出宝贵的意见!!

查看系统里是否有git

[root@localhost ~]# git usage: git [--version] [--help] [-c name=value] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-objects] [--bare] [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] <command> [<args>]

安装git

[root@localhost ~]# yum install git 已加载插件:fastestmirror, langpacks Loading mirror speeds from cached hostfile ...中间省略... 更新完毕: git.x86_640:1.8.3.1-23.el7_8 作为依赖被升级: perlGit.noarch0:1.8.3.1-23.el7_8 完毕!

创建版本库

创建一个仓库,也就是版本库,相当于创建一个目录,这个目录里面的所有文件都可以被Git管理起来,每个文件的修改、删除,Git都能跟踪,以便任何时刻都可以追踪历史,或者在将来某个时刻可以“还原”。 第一步:

#创建一个库 [root@localhost ~]# mkdir reposiitory #切换到这个库 [root@localhost ~]# cd reposiitory #查看当前目录的路径 [root@localhost reposiitory]# pwd /root/reposiitory

第二步:

通过 git init命令把这个目录变成Git可以管理的仓库 [root@localhost reposiitory]# git init 初始化空的 Git 版本库于 /root/reposiitory/.git/ #我们可以看到git用来跟踪管理版本库的目录 #注:.git是隐藏文件没事千万不要手动修改这个目录里面的文件,不然改乱了,就把Git仓库给破坏了。 [root@localhost reposiitory]# ls -a . .. .git
最新回复(0)