Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
Resultats de text complet:
- 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]] == todo <callout type="warni
- 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
- submodulos
- = submodulos == 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
- fusion varios repos en 1 conservando historia
- = fusion varios repos en 1 conservando historia /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 [
- 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 alias
- = git alias * ''~/.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... %Cblue\\ [%cn]" --decorate alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.//
- 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 diff
- = git diff /via: [[https://devconnected.com/how-to-compare-two-git-branches/]] == diferencias en fich... 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..
- GIT: unable to create thread: Resource temporarily unavailable @tech:git:error
- une git repack git fsck </code> <code bash> git config --global pack.windowMemory "100m" git config --global pack.packSizeLimit "100m" git config --global pack.threads "1" </code>