博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《工具 系列》 - Git使用
阅读量:6391 次
发布时间:2019-06-23

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

hot3.png

配置Git提交信息

git config --global user.name kimismegit config --global user.email lily@example.com

创建本地仓库

git initgit init myRep

添加文件到暂存区

git add test.txtgit add .

查看文件状态

$ git statusOn branch masterNo commits yetChanges to be committed:  (use "git rm --cached 
..." to unstage) new file: test.txt

将暂存区文件提交到本地仓库

git commit -m "first commit"

查看当前文件与版本库文件区别

修改test.txt

$ git diffdiff --git a/test.txt b/test.txtindex e69de29..d800886 100644--- a/test.txt+++ b/test.txt@@ -0,0 +1 @@+123\ No newline at end of file

查看提交历史

$ git logcommit 97d2b0e53d07909d5df2cac308d48e36e518d64a (HEAD -> master)Author: Kimisme 
Date: Sun Jan 7 22:08:13 2018 +0800 first commit

通过加参数过滤

git log --pretty=oneline

 

转载于:https://my.oschina.net/kimisme/blog/1603677

你可能感兴趣的文章
linux下core file size设置笔记
查看>>
mysql 、redis的区别
查看>>
使用JPA中@Query 注解实现update 操作
查看>>
7.4. APC Cache (php-apc - APC (Alternative PHP Cache) module for PHP 5)
查看>>
Web 仪表盘
查看>>
我的Fedora 7硬盘安装过程
查看>>
18.4. FAQ
查看>>
Python——SSHClient.py
查看>>
MVC解决更新冲突问题
查看>>
江西理工大学南昌校区cool code竞赛
查看>>
[LeetCode] Trim a Binary Search Tree 修剪一棵二叉搜索树
查看>>
Ubuntu SDL lib 安装
查看>>
Java 并发编程内部分享PPT分享
查看>>
关于discuz中禾金投票系统循环出现引导页的问题
查看>>
C#开源系统大汇总
查看>>
Linux服务器安全初始化自选安装Shell脚本
查看>>
PyCharm教程
查看>>
Python 简单的数据结构(一)
查看>>
谁说我们只会做工作流?做实验室管理系统我们也内行。
查看>>
yum安装开发库
查看>>