gitconfig
This commit is contained in:
parent
dd554ae1bf
commit
bf7f6cbfc4
27
README.md
27
README.md
@ -73,6 +73,33 @@ vous pourrez la recréer plus tard quand vous aurez besoin...
|
||||
- `git stash apply` > j'applique ma sauvegarde local
|
||||
- je poursuis mes modifs et je add/commit/push quand j'ai fini
|
||||
|
||||
### config git
|
||||
dans /home/user/.gitconfig (ou dans /etc/gitconfig)
|
||||
```
|
||||
[push]
|
||||
default = matching
|
||||
[pull]
|
||||
rebase = true
|
||||
[rebase]
|
||||
autoStash = true
|
||||
[alias]
|
||||
st = status
|
||||
br = branch
|
||||
co = checkout
|
||||
ci = commit
|
||||
undo = reset HEAD
|
||||
|
||||
gr = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
|
||||
[color]
|
||||
branch = auto
|
||||
diff = auto
|
||||
interactive = auto
|
||||
status = auto
|
||||
```
|
||||
|
||||
- alias `git st` == `git status` (idem pour les autres)
|
||||
- `git gr` offre un aperçu de l'historique
|
||||
|
||||
## docker-compose
|
||||
|
||||
### fonctionnement
|
||||
|
Loading…
Reference in New Issue
Block a user