-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
31 lines (31 loc) · 750 Bytes
/
Copy path.gitconfig
File metadata and controls
31 lines (31 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ~/.gitconfig
[alias]
co = checkout
ci = commit -a
st = status
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
[color]
ui = always
[core]
editor = nvim
[push]
default = simple
[user]
name = osman
email = osman@surkatty.org
[credential "https://github.com"]
# Github uses "Personal access tokens" as passwords for their HTTPS
# protocol. You can generate one at: https://github.com/settings/tokens
username = breadtk
helper =
helper = !/usr/bin/gh auth git-credential
[pull]
rebase = false
[init]
defaultBranch = main
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential