blob: c51f4cb7bafcb772a4973fcb0647edbd13684c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Some day all of these will live in my dotfiles repository.
Until then…
# `~/.bash_aliases`
``` bash
# Make Bash expand aliases before running sudo.
alias sudo='sudo '
```
# `.gitconfig`
``` ini
[user]
name = …
email = …
[alias]
root = rev-parse --show-toplevel
forget = update-index --assume-unchanged
remember = update-index --no-assume-unchanged
```
|