博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git 单机版
阅读量:4963 次
发布时间:2019-06-12

本文共 1917 字,大约阅读时间需要 6 分钟。

Git 是一个分布式的开源版本控制系统,也就是说,每台机器都可以充当控制中心,我从本机拉取代码,再提交代码到本机,不需要依赖网络,各自开发各自的

如何创建 git 仓库:

[root@localhost ~]$ yum install -y git    # 安装git[root@localhost ~]$ mkdir -p /data/git    # 创建要作为git仓库的目录[root@localhost ~]$ cd /data/git          # 进入该目录[root@localhost git]$ git init            # 初始化仓库[root@localhost git]$ git config --global user.name "Your Name"         # 配置用户,以便知道提交代码的人是谁[root@localhost git]$ git config --global user.email you@example.com    # 配置邮箱,以便联系到提交代码的人

如何提交代码到 git 仓库:

[root@localhost git]$ touch 1.txt      # 创建一个测试文件[root@localhost git]$ git add 1.txt    # 添加到版本控制中心[root@localhost git]$ git commit -m 'add new file 1.txt' 1.txt    # 提交到git仓库[root@localhost git]$ git status       # 查看当前仓库中的状态

修改代码后如何提交到 git 仓库:

[root@localhost git]$ echo "abc" >> 1.txt    # 修改文件内容[root@localhost git]$ git diff 1.txt         # 还没提交到代码仓库之前,可以对比当前文件跟代码仓库的文件有什么不同[root@localhost git]$ git commit -m 'add some character to 1.txt' 1.txt     # 提交到代码仓库[root@localhost git]$ git status    # 查看当前仓库中的状态

如何回滚版本:

[root@localhost git]$ git log --pretty=oneline           # 查看提交过的版本日志[root@localhost git]$ git reset --hard 0e6ff268923a54    # 回滚到指定的版本[root@localhost git]$ git reflog                         # git reflog 可以查看所有分支的所有操作记录

如何撤销修改:

[root@localhost git]$ rm -f 1.txt    # 如果我不小心删除了文件,如何恢复回来[root@localhost git]$ git checkout -- 1.txt    # 重新检出文件即可
[root@localhost git]$ echo "aaa" >> 1.txt    # 如果我修改了文件[root@localhost git]$ git add 1.txt          # 添加到版本控制中心,但这时我不想提交了,想恢复修改前的文件,该如何恢复[root@localhost git]$ git reset HEAD 1.txt   # 先重置HEAD(HEAD可以理解为一个游标,一直指向当前我们所在版本库的地址,就是我们当前所在版本库的头指针)[root@localhost git]$ git checkout -- 1.txt  # 再重新检出文件即可

如何删除文件:

# 如果我们直接使用 rm -f 1.txt 只是删除了本地文件,版本库里的文件还是没有删除的,因此要用下面的方法 [root@localhost git]$ git rm 1.txt                         # 删除本地文件[root@localhost git]$ git commit -m 'delete file 1.txt'    # 提交到版本库,会自动把版本库里的文件也删除

 

 

 

 

 

 

    

转载于:https://www.cnblogs.com/pzk7788/p/10291237.html

你可能感兴趣的文章
flask简单的注册功能
查看>>
JSP常用标签
查看>>
dashucoding记录2019.6.7
查看>>
IOS FMDB
查看>>
编码总结,以及对BOM的理解
查看>>
九涯的第一次
查看>>
PHP5.3的VC9、VC6、Thread Safe、Non Thread Safe的区别
查看>>
Android中全屏或者取消标题栏
查看>>
处理器管理与进程调度
查看>>
页面懒加载
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java zip 中文文件名乱码_java使用zip压缩中文文件名乱码的解决办法
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
kafka的java客户端_KAFKA Producer java客户端示例
查看>>
java -f_java学习笔记(一)
查看>>
java 什么题目好做_用java做这些题目
查看>>
java中的合同打印_比较方法违反了Java 7中的一般合同
查看>>
php 位运算与权限,怎么在PHP中使用位运算对网站的权限进行管理
查看>>
php include效率,php include类文件超时
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>