Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
Resultats de text complet:
- git tips
- modo seguro:<code bash>git fetch origin git log --oneline main..origin/main git checkout main git log ... base origin develop </code> <code bash comandos con TAGs> git tag [-l] git show <tag> git tag -a <TAG... a </code> /via: [[https://stackoverflow.com/questions/36358265/when-does-git-refresh-the-list-of-remot... deshaz el útlimo commit, pero deja los cambio disponibles git reset HEAD~ --soft git stash # muevete a
- git config
- = git config {{tag>git}} == glosario * HEAD == @ * HEAD^ : commit anterior al HEAD * HEAD@{1.month} * - (guión) : te devuelve a la rama que acabas de dejar == config * ubicación: * system : /etc/gitconfig [--system] * global : ~/.gitconfig [--global]
- GIT
- t-sheet-es.md]] * {{ :tech:git:workflow-of-version-control.pdf |}} * {{ :tech:git:git-cheatsheet-en-white.pdf |}} · {{ :tech:git:git-cheatsheet-en-gre... -en-dark.pdf |}} * {{ :tech:git:git-for-subversion-cheat-sheet.pdf |}} * {{ :tech:git:atlassian-gi... es/v2]] * [[https://esparta.github.io/gitimmersion-spanish/index.html]] * [[https://www.atlassian.
- git, sacar archivos del indice git (.gitignore) @tech:git:dotfiles
- lente pregunta y es importante entender cómo funciona Git con `.gitignore` y los ficheros ya existentes. ### ⚠️ Ficheros ya rastreados (Tracked Files) S... `data/cache` **ya existía** en tu repositorio y contenía ficheros que Git ya estaba rastreando (*trac... guirán siendo rastreados por Git, y las modificaciones que hagas en ellos aparecerán en `git status`**
- git diff[tool]
- cambiados respecto a un commit> git show --stat --oneline <commit-id> git diff-tree --no-commit-id --name-only -r <commit-id> </code> == configuración difftool <code bash> #git config --global merge.tool kdiff3 #git config --global mergetool.
- git repo server
- = protocolos [[https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols#The-HTTP/S-Protocol]] ... r/bin/git-shell <username>'' * **/etc/ssh/sshd_config**:<code> Match User git ForceCommand /usr/... file** * [[https://unix.stackexchange.com/questions/489771/block-git-user-from-login-but-allow-the-user-to-still-function-as-a-git-repo]] == repositorio [[https://www.lin
- git submodulos
- = git submodulos {{tag>git}} == clonar incluyendo submódulos <code bash; v2.13+>git clone --recurse-submodules -j8 <url-git></code> <code bash; v2.8-v2.12>git clone --recursive -j8 <url-git> # -j8 solo disponible a partir de la 2.8</code> <code bash; v2.8->git clon
- .git*
- = .git* {{tag>git}} == .gitconfig * ''~/.gitconfig'': <code properties> [alias] ck = checkout s = status l = log --oneline --max-count=10 ll = log --pretty=for... \\ [%cn]" --decorate --numstat lg = log --oneline --decorate --graph ls = log --pretty
- git: fusion varios repos en 1 conservando historia
- = git: fusion varios repos en 1 conservando historia {{tag>git}} /via: [[https://medium.com/@checko/merging-two-git-repositories-into-one-preserving-the-git-history-4e20d3fafa4e]] * c... adimos el remote del primer repo que queremos fusionar:<code bash>git remote add -f first_repo `link_t
- Anotaciones curso GIT
- = Anotaciones curso GIT * git init * git add * .gitignore * git diff [--staged][--cached] * git commit [-m "mensaje"][-a][--ammend] * git config --global core.editor * git config --global alias.unstage 'reset HEAD ~' * git config --global alias.last 'log -1 HEAD' * git rm [
- git: migrar repositorio
- >git}} <callout type="warning" title="Errores" icon="true">Esta página contiene errores subsanados en la explicación \\ /vía: [[https://maureenbarahona.medium.com/migrar-un-repositorio-con-todos-sus-commits-y-todas-sus-ramas-ccd2c5e6d389]] </callout>
- git: replicación o duplicación de repositorios
- </code> /vía: [[https://stackoverflow.com/questions/3959924/whats-the-difference-between-git-clone-mirror-and-git-clone-bare]] <code bash>git clone --mirror $URL ≡ git clone --bare $URL && (cd $(basename $URL) && git rem
- git autopush shell script
- itorio GIT de manera automatizada * añadir a cron para ejecución automatizada. * hay que configurar el remote: * git config credential.helper <- no he hecho funcionar o no aporta * origin https://<user>:<pass>@<url>
- git LFS
- --local, afecta a todos los repos de la sesión, con --local solo al actual</code> * configuración:<code bash>git lfs track # ver que seguimientos se es... t add <files></code> == other * problemes amb configuració ~/.ssh/config * <code bash>git lfs env</code> * ''.lfsconfig'' * <code bash>git push
- git DIFF
- git DIFF {{tag>git comando}} /via: [[https://devconnected.com/how-to-compare-two-git-branches/]] == ... especto a un commit:<code bash> git show --stat --oneline <commit-id> git diff-tree --no-commit-id --name-only -r <commit-id> </code> * muestra diferencias ... /code> * menos información:<code bash>git log --oneline --graph --decorate --abbrev-commit branch1..