Cerca

Heus ací els resultats de la cerca.

GIT
9 Resultats, Darrera modificació:
= GIT {{tag>devops info}} == related === cursos {{topic>git +cursos}} === + info {{NEWPAGE>tech:git}} {{topic>git -cursos}} * ... [[https://esparta.github.io/gitimmersion-spanish/index.html]] * [[https://www.atlassian.com/git/tut... ithub.com/tj/git-extras/</callout> <callout type="info" title="git submodules" icon="true">https://sta
git tips
8 Resultats, Darrera modificació:
ick <commit1>..<commit2> # commit1^..commit2 para incluir commit1 en el movimiento git push origin ram... la-rama-correcta git stash pop git add . # or add individual files git commit -m "your message here"; ... as ramas>git reflog # cada entrada tiene un HEAD@{index}</code> <code bash (ohsgitgit) vuelta atrás>git reset HEAD@{index}</code> <code bash cambiar el mensaje de un co
git submodulos
7 Resultats, Darrera modificació:
= git submodulos {{tag>git}} == clonar incluyendo submódulos <code bash; v2.13+>git clone --recurse-su... t> cd <path-git-submodule> git submodule update --init --recursive</code> == incluir en nuestro proyecto * añadir submódulo : <code bash>git submodule ... l submódulo, se procede como un commit normal * inicializar submódulo : <code bash>git submodule ini
.git*
4 Resultats, Darrera modificació:
--walk-reflogs --max-count=10 ai = add --interactive ss = status --short </code> <cod... inguna regla: <code bash>git check-ignore -v --no-index --non-matching <ruta/al/fichero></code> == .gitkeep Fichero vacío para indicar que ese directorio se ha de mantener, aunque no contenga más archivos. == .gitattributes indica la naturaleza de cierto tipos de archivos par
git LFS
4 Resultats, Darrera modificació:
cket-cloud/docs/use-git-lfs-with-bitbucket/]] == install <code bash>sudo apt install git-lfs</code> == setup (nuevos repos) * instalación cliente:<code bash>git lfs install --local # si no se especifica --local, afecta a todos los
git repo server
4 Resultats, Darrera modificació:
<code bash> mkdir repo.git git --git-dir=repo.git init %%--%%bare </code> === crear repositorio para compartir <code bash> git init --bare --shared=group repo_path chgrp -R foo re... o local branches of the target, it maps all refs (including remote-tracking branches, notes etc.) and ... these refs are overwritten by a git remote update in the target repository. [[https://git-scm.com/docs
git: fusion varios repos en 1 conservando historia
3 Resultats, Darrera modificació:
//medium.com/@checko/merging-two-git-repositories-into-one-preserving-the-git-history-4e20d3fafa4e]] ... master</code> * ''-f'' hace que haga un fetch inmediatamente (With -f option, git fetch <name> is run immediately after the remote information is set up.) * ''--allow-unrelated-hi
git alias
1 Resultats, Darrera modificació:
tps://git-scm.com/book/en/v2/Git-Basics-Git-Aliases]] +info: [[https://github.com/GitAlias/gitalias]]
Anotaciones curso GIT
1 Resultats, Darrera modificació:
= Anotaciones curso GIT * git init * git add * .gitignore * git diff [--staged][--cached] *
git diff
1 Resultats, Darrera modificació:
de bash>git log branch1..branch2</code> * menos información:<code bash>git log --oneline --graph --d
Crear repositorio de solo lectura (para algunos)
1 Resultats, Darrera modificació:
kdir mi_repositorio.git cd mi_repositorio.git git init --bare</code> * asignar owners: <code bash>su