-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
25 lines (23 loc) · 973 Bytes
/
.gitconfig
File metadata and controls
25 lines (23 loc) · 973 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
[alias]
lol = log --graph --decorate --pretty=oneline --abbrev-commit
pushf = push --force-with-lease --force-if-includes
[user]
email = a.j.sisley@hotmail.com
name = Andrew Sisley
[core]
editor = vim
excludesfile = /home/andy/.gitignore_global
[push]
default = simple
[rebase]
autosquash = true
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
# avoid issues where the cargo-edit tool tries to clone from a repo you do not have WRITE access to.
# we already use SSH for every github repo, and so this puts the clone back to using HTTPS.
[url "https://github.com/rust-lang/crates.io-index"]
insteadOf = https://github.com/rust-lang/crates.io-index
# avoid issues where the `cargo audit` command tries to clone from a repo you do not have WRITE access to.
# we already use SSH for every github repo, and so this puts the clone back to using HTTPS.
[url "https://github.com/RustSec/advisory-db"]
insteadOf = https://github.com/RustSec/advisory-db