Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
Resultats de text complet:
- git tips
- de> * [[https://www.atlassian.com/es/git/tutorials/syncing/git-fetch]] * [[https://www.atlassian.com/es/git/tutorials/using-branches/git-checkout]] * [[https://www.atlassian.com/es/git/tutorials/using-branches/git-merge]] * [[https://www.atlassian.com/es/git/tutorials/syncing/git-pull]] == ramas <code bash renombrad
- GIT
- == cheatsheet * [[https://github.com/arslanbilal/git-cheat-sheet/blob/master/other-sheets/git-chea... .html]] * [[https://www.atlassian.com/git/tutorials/learn-git-with-bitbucket-cloud|git bitbucket tutorial]] * [[https://ohshitgit.com/es]] == todo <callout type="warning" title="git extras" icon="true">ht
- git config
- losario * HEAD == @ * HEAD^ : commit anterior al HEAD * HEAD@{1.month} * - (guión) : te devuel... * system : /etc/gitconfig [--system] * global : ~/.gitconfig [--global] * repo : .git/config * <code bash>git config --list --show-origin</code> * ''git config [--global] --list'' : si omitimos el ámbito, muestra todas
- git LFS
- -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 rep
- .git*
- itconfig * ''~/.gitconfig'': <code properties> [alias] ck = checkout s = status ... d%d\\ %Creset%s%Cblue\\ [%cn]" --decorate alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / a = add b = branch c = commit
- git diff[tool]
- figuración difftool <code bash> #git config --global merge.tool kdiff3 #git config --global mergetool.kdiff3.path "/usr/bin/kdiff3" #git config --global mergetool.kdiff3.trustExitCode false git config --global --add diff.guitool kdiff3 git config --glob
- git alias
- = git alias * [[https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases]] == alias * <code bash>git config --global alias.cm ‘-c “user.name=matebcn” commit’</code> /via: [[https:/
- git repo server
- Server-The-Protocols#The-HTTP/S-Protocol]] * local * http(s) * Smart HTTP * Dumb HTTP * ... Match User git ForceCommand /usr/bin/git AllowTCPForwarding no X11Forwarding no </code> ... om/questions/489771/block-git-user-from-login-but-allow-the-user-to-still-function-as-a-git-repo]] ==... epositorio [[https://www.linux.com/training-tutorials/how-run-your-own-git-server/]] === crear reposit
- Anotaciones curso GIT
- [-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 [-f][--cached
- git: fusion varios repos en 1 conservando historia
- dd -f first_repo `link_to_first_repo` git merge --allow-unrelated-histories first_repo/master</code> ... fter the remote information is set up.) * ''--allow-unrelated-histories'' permite saltarse la restricción **fatal: refusing to merge unrelated histories** * separar en carpetas si neces
- git submodulos
- ñadir el submódulo, se procede como un commit normal * inicializar submódulo : <code bash>git submodule init</code> * actualizar submódulo : <code bash>git submodule update</... * * eliminar los directorios (sin la barra final): <code bash>git rm --cached <path></code> /via:
- GIT: unable to create thread: Resource temporarily unavailable @tech:git:error
- ck git fsck </code> <code bash> git config --global pack.windowMemory "100m" git config --global pack.packSizeLimit "100m" git config --global pack.threads "1" </code>
- git: migrar repositorio
- = git: migrar repositorio {{tag>git}} <callout type="warning" title="Errores" icon="true">Esta página... s-sus-commits-y-todas-sus-ramas-ccd2c5e6d389]] </callout> - crear un repositorio vacío en el proveed
- git autopush shell script
- ue configurar el remote: * git config credential.helper <- no he hecho funcionar o no aporta *
- Crear repositorio de solo lectura (para algunos)
- = Crear repositorio de solo lectura (para algunos) {{tag>git}} * Crear repo: <code bash>mkdir mi_rep