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.
- Host: GitHub
- URL: https://github.com/malopolese/git-alias
- Owner: MaloPolese
- Created: 2021-11-25T16:32:52.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-04T23:55:30.000Z (over 4 years ago)
- Last Synced: 2025-02-12T15:54:31.438Z (over 1 year ago)
- Topics: git, gitaliases
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)