alias中意味着什么

alias中意味着什么

本文介绍了感叹号在git config alias中意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  git config --global alias.out \!git fetch; git cherry origin / HEAD -v

这是什么意思?是否等于这样:

  git config --global alias.out'!git fetch; git cherry origin / HEAD -v',

我对感叹号感到困惑,任何帮助都会赞赏。

解决方案

从: b
$ b


I just see a git config command as below:

git config --global alias.out \!"git fetch; git cherry origin/HEAD -v"

what does it mean? Is it equal to this:

git config --global alias.out '!git fetch; git cherry origin/HEAD -v',

I am confused with the exclamation mark,any help will be appreciated.

解决方案

From the git-config manual:

这篇关于感叹号在git config alias中意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 14:06