Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
Resultats de text complet:
- git TAG
- = git TAG {{tag>git comando}} * dos tipos: * lightweight: ligeros, hace referencia a un commit * anno... como autor, mensaje y fecha == añadir * ''git tag <tag>'' : crea tag ligero en el HEAD * ''git tag <tag> <commit>'' : crea tag ligero del commit con
- git tips
- = git tips {{tag>git}} == git fetch VS git pull * git pull = git fetch (+ git checkout) + git merge ... e origin develop </code> <code bash comandos con TAGs> git tag [-l] git show <tag> git tag -a <TAG> -m "<MENSAJE>" # tag local annotated git push origin <TAG> # subi
- .git*
- = .git* {{tag>git}} == .gitconfig * ''~/.gitconfig'': <code properties> [alias] ck = checkou... dev = !git checkout dev && git pull origin dev staging = !git checkout staging && git pull origin staging master = !git checkout master && git pull origin po = push origin po
- Anotaciones curso GIT
- init * git add * .gitignore * git diff [--staged][--cached] * git commit [-m "mensaje"][-a][--... al core.editor * git config --global alias.unstage 'reset HEAD ~' * git config --global alias.l... e][rm] * git fetch * git pull * git push [--tags] * git tag [-l][-a][-m] * anotadas, ligeras * git show * patrones glob -> regexp simplifica
- git: migrar repositorio
- = git: migrar repositorio {{tag>git}} <callout type="warning" title="Errores" icon="true">Esta página ... INO></code> - enviar todos los commits, ramas y tags:<code bash>git push origin --tags “refs/remotes/origin/*:refs/heads/*”</code> * si solo queremos
- git filter-repo
- repositorio independiente" git push </code> * **Tags:** Ambos métodos intentan preservar los *tags* (etiquetas) que hacían referencia a archivos en ese di
- git MERGE
- = git MERGE {{tag>git comando}} fusión a 3 bandas entre los dos últimos commits de las dos ramas y el ... ward * ''git merge %%--%%squash <rama>'' : importa los cambios de la rama y los deja en *staged area*
- git "rejected"
- = git "rejected" {{tag>git}} Cuando has olvidado hacer un "pull" antes de hacer tu "push" == manual - deshacer el commit realizado y dejarlo en el stage:<code bash>git reset --soft HEAD~1</code> - gu
- git STASH
- = git STASH {{tag>git comando}} == añadir * ''git stash push'' : guarda ficheros de *staged area* * ''git stash save [-u | %%--%%includ
- git autopush shell script
- = git autopush shell script {{tag>git}} script bash para hacer un commit de un repositorio GIT de maner
- git CHERRY-PICK
- = git CHERRY-PICK {{tag>git comando}} permite importar un commit (de otra rama) a tu rama sin traer el
- git config
- = git config {{tag>git}} == glosario * HEAD == @ * HEAD^ : commit anterior al HEAD * HEAD@{1.mon
- git DIFF
- = git DIFF {{tag>git comando}} /via: [[https://devconnected.com/how-to-compare-two-git-branches/]] ==
- git diff[tool]
- = git diff[tool] {{tag>git}} == básicos <code bash; mostrar diferencias entre working area y último com
- git FETCH
- = git FETCH {{tag>git comando}} <markdown> La respuesta corta es: **no recibirás una notificación de si