feat: remove set editor in git script
parent
9262683e15
commit
15d06a92f5
|
@ -29,18 +29,18 @@ Always pull rebase:
|
||||||
git config --global pull.rebase true
|
git config --global pull.rebase true
|
||||||
```
|
```
|
||||||
|
|
||||||
Set default branch to `main`:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
git config --global init.defaultBranch main
|
|
||||||
```
|
|
||||||
|
|
||||||
Always fetch/pull prune:
|
Always fetch/pull prune:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git config --global fetch.prune true
|
git config --global fetch.prune true
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Set default branch to `main`:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git config --global init.defaultBranch main
|
||||||
|
```
|
||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
Prefer rebase when pull:
|
Prefer rebase when pull:
|
||||||
|
|
|
@ -12,9 +12,6 @@ git config --global alias.ps push
|
||||||
git config --global alias.st status
|
git config --global alias.st status
|
||||||
git config --global alias.sw switch
|
git config --global alias.sw switch
|
||||||
|
|
||||||
# Editor
|
|
||||||
git config --global core.editor nvim
|
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
git config --global pull.rebase true
|
git config --global pull.rebase true
|
||||||
git config --global init.defaultBranch main
|
git config --global init.defaultBranch main
|
||||||
|
|
Loading…
Reference in New Issue