markdown git有用的命令

Posted

tags:

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

### 1. Show latest commit on branches

```
git branch -v
```

For remote branches, use `git branch -v -a`

### 2. Show top 3 latest commits

```
git log -3
```

some additionals option:

`--oneline` to show one line  
`--branches` to show remote branch (if available)

### 3. Show commits by author

```
git log -3 --author="some body"
```

### 4. Show all authors

```
git log | grep Author: | sort | uniq
git shortlog -snc
git shortlog -sne
```

### 5. Rename branch

```
# for current branch
git branch -m "new name"

# for other branches
git branch -m <old-name> <new-name>
```

> tip: `-m` is like move file command in file system

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

markdown Git有用的命令

markdown Git - 有用的命令

markdown 有用的Git命令

markdown 有用的Git命令

markdown 有用的Git命令

markdown 有用的git命令