git查看commit的内容
在push之前有时候会不放心是不是忘记加某些文件,或者是不是多删了个什么东西,这时候希望能够看看上次commit都做了些什么。
一开始想到的是用gitdiff,但是gitdiff用于当前修改尚未commit的时候较为方便,一旦commit后,需要指定上次节点的名称(一个hash值),不方便。这种时候用gitlog更合适,因为commit的内容会以log来记录。
下面记录几个常用的情境以及对应的命令。
仅仅想看最近谁有提交,以及提交的描述
对应命令 gitlog
显示Sample
commit6305aa81a265f9316b606d3564521c43f0d6c9a3
Author:XXX
Date: Thu Nov 3 11:38:15 2011 +0800
fillauthor information in the head of files and format some code
commit8e8a4a96e134dab8f045937efee35bd710006946
Author:XXX
Date: Thu Nov 3 04:05:34 2011 +0800
usermanagement is mostly complete
details:
add support for account disable/enable
rewrite most related views to suit the above need
provide two decorators for access control (see README)
fixed many errors in Milestone 1
commit2870cd564371d8ad043d0da426a5770d36412421
Author:XXX
Date: Mon Oct 17 20:19:04 2011 -0400
fixthe bug of get_ori_url_from_shorturl().
commitb6cdd881a19ecaff838d5825c3a6b7058fdd498a
Author:XXX
Date: Mon Oct 17 20:17:37 2011 -0400
fixthe bug of get_article_from_short_url.
仅仅想看最后一次的提交
对应命令参数-n1
显示Sample
commit6305aa81a265f9316b606d3564521c43f0d6c9a3
Author: XXX
Date:Thu Nov 3 11:38:15 2011 +0800
fillauthor information in the head of files and format some code
想看到最近一次提交所有更改过的文件
对应命令 gitlog -n 1 --stat
显示Sample
commit6305aa81a265f9316b606d3564521c43f0d6c9a3
Author:XXX
Date: Thu Nov 3 11:38:15 2011 +0800
fillauthor information in the head of files and format some code
Site/accounts/decorators.py | 2+-
Site/accounts/forms.py | 1+
Site/accounts/models.py | 1+
Site/accounts/readme | 3++-
Site/accounts/templates/account_activate.html | 1+
Site/accounts/templates/account_disabled.html | 1 +
…
…
28files changed, 37 insertions(+), 8 deletions(-)
想看到最近一次提交所有更改的细节
对应命令 gitlog -n 1 -p
显示Sample
commit6305aa81a265f9316b606d3564521c43f0d6c9a3
Author:XXX
Date: Thu Nov 3 11:38:15 2011 +0800
fillauthor information in the head of files and format some code
diff--git a/Site/accounts/decorators.pyb/Site/accounts/decorators.py
index 22522bc..a6bb440100755
--- a/Site/accounts/decorators.py
+++b/Site/accounts/decorators.py
@@ -1,9 +1,9@@
#!/usr/bin/env python
# -*- coding: utf-8-*-
+# author: Rex Nov. 3, 2011
from functoolsimport wraps
from django.core.urlresolvers importreverse
from django.http import HttpResponseRedirect
-fromdjango.utils.decorators import available_attrs
fromSite.accounts.models import UserProfile
deflogin_required(view_func):
diff --gita/Site/accounts/forms.py b/Site/accounts/forms.py
index016710b..778d92a 100755
--- a/Site/accounts/forms.py
+++b/Site/accounts/forms.py
@@ -1,5 +1,6 @@
#!/usr/bin/envpython
# -*- coding: utf-8 -*-
+# author: Rex Nov.3, 201
…
http://blog.csdn.net/qxb1229/article/details/8189997
git diff --name-only --diff-filter=AMXTCR HEAD~2 HEAD | xargs -l -I{} cp --parents --verbose "{}" target_dir 把两次提交的差异化文件拷贝出来
相关推荐
使用方式: 1、解压package.rar package.rar 2、进入package文件夹,右键打开git bash 3、执行 sh install.sh 进行...4、执行git init 命令,查看当前目录是否生成 .git/gitcommit 和 .git/hooks/commit-msg 验证
04★Git入门★第一次提交_git_commit
idea commit 模板插件
maven git commit id plugin git-commit-id-plugin is a plugin quite similar to ...
git log oneline -n,查看n条log信息 git rebase -i HEAD~n,n条commit进行rebase 将需要修改的commit信息,将pick命令改为 r 命令;ESC 输入 :wq 回车 开始修改commit信息,修改完,ESC 输入 :wq 回车 打印出成功 ...
Vscode的Git-commit-plugin安装以上vscode(版本> = 1.42.0),然后需要安装git插件。遵循,如下所示: (): <subject><BLANK><body><BLANK><footer>类型必须为以下之一: 壮举:一项新功能fix :一个错误修复...
在日常的开发中,目前主流的代码管理工具就是 git 了,当我们对代码进行改动了,首先得git commit提交到本地仓库,git 规定了提交时必须填写提交信息作为改动说明,保存 commit 历史中,可以找到历史代码,也方便他人 ...
Git的每个commit都包含了对文件的一次更改,即使你后来删除了这个大文件,只要它曾存在于历史中,就会影响push操作。因此,要解决这个问题,我们需要清理整个提交历史,确保大文件不再其中。 一个强大的工具是`git ...
git-commit-autouser git-commit-autouser 自动设置提交者和作者的姓名和电子邮件。 名称和电子邮件由远程源的 url 确定。 安装 $ gem install git-commit-autouser 用法 将以下设置添加到 .gitconfig: ...
git commit id插件与https://fisheye.codehaus.org/browse/mojo/tags/buildNumber-maven-plugin-1.0-beta-4非常相似,但是作为buildNumber,在我启动这个插件时,它只支持cvs和svn,必须做些什么。
公司要迁移git仓库,从仓库A迁移到仓库B,为了保留commit信息,特整理了两种方便的方式实现git仓库快速迁移,以及其他同事能快速切换库的建议。 第一种:使用镜像推送 git push --mirror,这种方式网上都有,算是...
如何使用idea git 提交代码带git-commit-emoji 图标, 安装教程如下:https://blog.csdn.net/qq_35781178/article/details/103426710
在执行以上操作后,可以通过`git log`命令查看commit历史,你会看到一个新的、干净的commit历史,只包含新分支上的一次提交。这种方式可以有效地清除旧的commit历史,但务必谨慎操作,因为它可能会导致其他开发者的...
personal used template for git commit. including category/bug id...
git-remind是一个命令行工具,可以防止您忘记git-commit和git-push。 产品特点 git-commit / git-push状态 git-remind检查您计算机中所有git存储库的状态,并显示状态是否存在未提交的文件和应提交到远程的预先提交...
git commit id插件与https://fisheye.codehaus.org/browse/mojo/tags/buildNumber-maven-plugin-1.0-beta-4非常相似,但是作为buildNumber,在我启动这个插件时,它只支持cvs和svn,必须做些什么。
:eyes: 立即查看您的每条git commit消息 :rocket: 。 一个git“ commit-msg”挂钩,用于根据流行的来替换您的git commit消息。 作为一个挂钩,它将在每次提交时运行,以确保要提交的消息对约定有效。 否则,提交将...
验证Git提交消息 根据各种预设验证提交消息安装yarn add validate-git-commit-msg -D特征即使还有其他一些程序包也可以执行此操作,但该程序包的生活质量却发生了一些变化。 让您决定如何验证提交消息(请参阅) 它...
然而,在忙碌的工作流程中,开发者有时可能会忘记进行`git commit`和`git push`操作,这可能导致丢失或遗漏代码更改。为了解决这个问题,出现了名为"Go-git-remind"的命令行工具。 "Go-git-remind"是一个用Go语言...
在进行Git提交时,通常需要编写提交消息来描述本次更新的内容,这对于保持代码仓库的整洁和可读性至关重要。 Atom Git Commit Atom插件的核心功能包括: 1. **直接在Atom中编辑**: 无需离开Atom,你可以在当前打开...