Cerca

Heus ací els resultats de la cerca.

git tips
4 Resultats, Darrera modificació:
= git tips {{tag>git}} == git fetch VS git pull * git pull = git fetch (+ git checkout) + git merge * modo seguro:<code bash>git fetch origin git log --oneline main..origin/main git c... //www.atlassian.com/es/git/tutorials/syncing/git-fetch]] * [[https://www.atlassian.com/es/git/tutoria
git: fusion varios repos en 1 conservando historia
2 Resultats, Darrera modificació:
repo/master</code> * ''-f'' hace que haga un fetch inmediatamente (With -f option, git fetch <name> is run immediately after the remote information is s
git repo server
2 Resultats, Darrera modificació:
usermod -s /usr/bin/git-shell <username>'' * **/etc/ssh/sshd_config**:<code> Match User git Force... l refs (including remote-tracking branches, notes etc.) and sets up a refspec configuration such that a
git config
1 Resultats, Darrera modificació:
e dejar == config * ubicación: * system : /etc/gitconfig [--system] * global : ~/.gitconfig
Anotaciones curso GIT
1 Resultats, Darrera modificació:
> * git remote [add][show][rename][rm] * git fetch * git pull * git push [--tags] * git tag [
.git*
1 Resultats, Darrera modificació:
s] co = checkout cob = checkout -b coo = !git fetch && git checkout br = branch brd = branch -d b
git: replicación o duplicación de repositorios
1 Resultats, Darrera modificació:
(cd $(basename $URL) && git remote add --mirror=fetch origin $URL)</code> <code bash; github doc> git