markdown git:命令行要点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown git:命令行要点相关的知识,希望对你有一定的参考价值。

# Git alias
    git config --global alias.co checkout
    git config --global alias.ci commit
    git config --global alias.st status
    git config --global alias.br branch
    git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
    
&#x1F34E; **Note: all the following commands assume that the above aliases have been set**
    
# Get remote commits

## Rebase my local commits on top of the remote commits
    git pull --rebase

## Don't rebase or merge, only fast forward
    git pull --ff-only

## See what's in the remote commits in advance
    git fetch
    git lg
    
# See more log details
    git lg --stat

以上是关于markdown git:命令行要点的主要内容,如果未能解决你的问题,请参考以下文章

markdown git命令行备忘单

markdown 一些命令在命令行上获取存储库的git commit日志统计信息。

GitBook是一个命令行工具(Node.js库),我们可以借用该工具使用Github/Git和Markdown来制作精美的图书,但它并不是一本关于Git的教程哟。

markdown docker:docker命令要点

git 基本命令与要点(方便查阅)

git 基本命令与要点(方便查阅)