惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
罗磊的独立博客
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
小众软件
小众软件
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
S
SegmentFault 最新的问题
H
Help Net Security
量子位

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Git Learning Notes (2)
2020-05-07 · via jdhao's digital space

My Git learning notes.

How to change most recent commit message#

After we have added a local commit, we may find that we need to do some updates before pushing to remote repo. We can use git commit --amend to change last commit.

With --amend option, we can change not just commit message. Files in local repo can also be updated. After using this option, last local commit will be replaced with the new commit.

References#

How to show changes for a specific file#

Sometimes, we want to show the changes for a particular file across commits. This can be achieved by git log command:

The -p option will show detailed diff info for the file.

A more complete and useful version is:

git log --stat -p --follow <file_path>

Meaning of options used:

  • --stat: show info about file changed, deletions and insertions.
  • --follow: show file change info before it was renamed (by default, file history before renaming is not shown).

To show only the latest five changes, we can use the -n option:

git log --stat -p --follow -n 5 <file_path>

A similar command is git whatchanged:

git whatchanged -p <file_path>

The git-whatchanged command is similar to git log and is kept for backward compatibility. New users are encouraged to use git log instead.

References#

How to set up editor for git commit#

I am used to writing my commit message on the command line with -m option (git commit -m "xxx"). This works well for short commit message. When we want to write the detailed explanation for a change in commit message, it is better to do it in a text editor, e.g., in Vim or Neovim.

There are basically two way to set up the editor.

  • Set up the EDITOR and VISUAL env variable:
    export EDITOR="nvim"
    export VISUAL="$EDITOR"
  • Set up the editor git uses via git config:
    git config --global core.editor "nvim"

After that, when you want to commit, just type git commit in the command line.

Neovim will be opened with a file named COMMIT_EDITMSG, you can edit this file. Anything not starting with # will be treated as your commit message. After you have done writing the commit message, exit the insert mode, save the file and quilt. This commit will be done.

References#