An open API service indexing awesome lists of open source software.

https://github.com/malopolese/git-alias

A useful list of git aliases.
https://github.com/malopolese/git-alias

git gitaliases

Last synced: about 1 year ago
JSON representation

A useful list of git aliases.

Awesome Lists containing this project

README

          

# Description

A useful list of git aliases.

# Usage

Shortcut for `git checkout`.

```bash
$ git ck
```

Shortcut for `git status`.

```bash
$ git st
```

Displays the last commit in detail.

```bash
$ git last
```

Displays the commit history in a graphical way.

```bash
$ git hist
```

Display all branches in a more pretty way.

```bash
$ git br
```

Shortcut for `git fetch`.

```bash
git $f
```

Combination of `git add .` and `git commit -m`.

```bash
$ git ac
```

Combination of `git add .` and `git commit --amend`.

```bash
$ git amend
```

Combination of `git add .` and `git commit --amend --no-edit`.

```bash
$ git noedit
```

Clear all not staged changes.

```bash
$ git clear
```

Shortcut for `git push`.

```bash
$ git p
```

Display logs in a more pretty way.

```bash
$ git lg
```

Allows push without triggering the CI.

```bash
$ git skipci
```

## About me

- Author - [Malo Polese](https://www.linkedin.com/in/malo-polese/)
- Website - [malo-polese.fr](https://malo-polese.fr/)