Commit c189c87958cfee63baae85579400983b6cf446f5

Add cherry-pick and rebase aliases to git
Author: xaizek
Author date (UTC): 2026-06-22 17:21
Committer name: xaizek
Committer date (UTC): 2026-06-22 17:21
Parent(s): b7781ee370ea4a3c665d88e20b24f1923010328e
Signing key: 99DC5E4DB05F6BE2
Tree: 0e6c5a33177863f627c6c087be2bdcc0e4f5de84
File Lines added Lines deleted
gitconfig 14 0
File gitconfig changed (mode: 100644) (index cebb31a..cbe4969)
6 6 pager = sed 's/\t/. /g' | less -R pager = sed 's/\t/. /g' | less -R
7 7
8 8 [alias] [alias]
9 cp = cherry-pick
10 cpa = cherry-pick --abort
11 cpc = cherry-pick --continue
12 cps = cherry-pick --skip
13 cpn = cherry-pick -n
14
15 rb = rebase
16 rbi = rebase --interactive
17 rba = rebase --abort
18 rbc = rebase --continue
19 rbe = rebase --edit-todo
20 rbs = rebase --skip
21 rbh = rebase --show
22
9 23 co = checkout co = checkout
10 24 cob = checkout -b cob = checkout -b
11 25 ci = commit -v ci = commit -v
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotfiles

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotfiles

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master