Compare commits
No commits in common. "9536b384962f30afce1b65da749dbd83412f8b3f" and "2dfe070085b0626c561e1d5624df4ea1cfd339b8" have entirely different histories.
9536b38496
...
2dfe070085
34
.gitconfig
34
.gitconfig
@ -1,34 +0,0 @@
|
|||||||
[user]
|
|
||||||
email = noreply@vergaracarmona.es
|
|
||||||
name = manuel vergara
|
|
||||||
[github]
|
|
||||||
user = manudocker
|
|
||||||
[core]
|
|
||||||
editor = nano
|
|
||||||
[pull]
|
|
||||||
rebase = false
|
|
||||||
[init]
|
|
||||||
defaultBranch = main
|
|
||||||
[alias]
|
|
||||||
cg = config --global
|
|
||||||
cl = config --list
|
|
||||||
all = add .
|
|
||||||
st = status
|
|
||||||
unstage = reset HEAD --
|
|
||||||
ci = commit -m
|
|
||||||
cia = commit -am
|
|
||||||
amend = commit --amend
|
|
||||||
ps = push
|
|
||||||
psu = ps --set-upstream origin
|
|
||||||
pl = pull
|
|
||||||
pf = ! git pull && git fetch
|
|
||||||
lg = log --graph --pretty=format:"%C(yellow)%h%Cred%d%Creset - %C(cyan)%an%Creset: '%s' %Cgreen(%cr)%Creset" --abbrev-commit
|
|
||||||
nm = lg --no-merges
|
|
||||||
df = lg -p
|
|
||||||
co = checkout
|
|
||||||
br = branch
|
|
||||||
main = branch -M main
|
|
||||||
back = co -- .
|
|
||||||
[credential "https://github.com"]
|
|
||||||
helper =
|
|
||||||
helper = !/usr/bin/gh auth git-credential
|
|
12
README.md
12
README.md
@ -1,5 +1,3 @@
|
|||||||
# Recopilación de comandos GIT
|
|
||||||
|
|
||||||
## Configuración Básica
|
## Configuración Básica
|
||||||
|
|
||||||
Configurar Nombre que salen en los commits
|
Configurar Nombre que salen en los commits
|
||||||
@ -15,9 +13,6 @@ Marco de colores para los comando
|
|||||||
git config --global color.ui true
|
git config --global color.ui true
|
||||||
```
|
```
|
||||||
|
|
||||||
*Ejemplo de configuración del archivo [.gitconfig](.gitconfig)*
|
|
||||||
|
|
||||||
|
|
||||||
## Iniciando repositorio
|
## Iniciando repositorio
|
||||||
|
|
||||||
Iniciamos GIT en la carpeta donde esta el proyecto
|
Iniciamos GIT en la carpeta donde esta el proyecto
|
||||||
@ -279,10 +274,3 @@ Merge con master de un fork
|
|||||||
git fetch upstream
|
git fetch upstream
|
||||||
git merge upstream/master
|
git merge upstream/master
|
||||||
```
|
```
|
||||||
|
|
||||||
## Info de Git con más detalles
|
|
||||||
Con explicaciones, gráficos, emoticonos... no tan seco como este README: [https://vergaracarmona.es/comandos-de-git/](https://vergaracarmona.es/comandos-de-git/)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Manuel Vergara](https://vergaracarmona.es)
|
|
Loading…
Reference in New Issue
Block a user