├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── commands.md ├── cvs.md ├── git.md ├── gitflow.md ├── github-avanzado.md ├── github-flow.md ├── github-zenodo.md ├── github.md ├── images │ ├── distribuido-git.png │ ├── distribuido-tradicional.png │ ├── flujo-centralizado.png │ ├── flujo-dictador.png │ ├── flujo-integracion.png │ ├── git-central.png │ ├── git-distrib.png │ ├── git-estados.png │ ├── git-local.png │ ├── github-changes.png │ ├── github-code.png │ ├── github-edit.png │ ├── github-flow-merge.png │ ├── github-flow-merged.png │ ├── github-flow-pr-created.png │ ├── github-flow-pr.png │ ├── github-issues-list.png │ ├── github-issues-new.png │ ├── github-main.png │ ├── github-mergerequest.png │ ├── github-newrepo.png │ ├── github-proyect.png │ ├── github-pullconversation.png │ ├── github-pullrequest.png │ ├── github-pushed.png │ ├── github-quicksetup.png │ ├── github-sshkeys.png │ ├── github-topbar.png │ ├── gitlab-dashboard.png │ ├── gitlab-merge-ff.png │ ├── gitlab-mergerequest.png │ ├── gitlab-organizacion.png │ ├── gitlab-proyecto.png │ ├── logo-cuadrado-invertido.svg │ ├── logoasl-white.png │ └── logoasl.png ├── index.md ├── introduccion.md ├── ramas.md ├── referencias.md ├── stylesheets │ └── extra.css ├── usoavanzado.md └── usobasico.md ├── mkdocs.yml ├── pyproject.toml └── uv.lock /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | poetry.toml 3 | site/ 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/README.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/cvs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/cvs.md -------------------------------------------------------------------------------- /docs/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/git.md -------------------------------------------------------------------------------- /docs/gitflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/gitflow.md -------------------------------------------------------------------------------- /docs/github-avanzado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/github-avanzado.md -------------------------------------------------------------------------------- /docs/github-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/github-flow.md -------------------------------------------------------------------------------- /docs/github-zenodo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/github-zenodo.md -------------------------------------------------------------------------------- /docs/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/github.md -------------------------------------------------------------------------------- /docs/images/distribuido-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/distribuido-git.png -------------------------------------------------------------------------------- /docs/images/distribuido-tradicional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/distribuido-tradicional.png -------------------------------------------------------------------------------- /docs/images/flujo-centralizado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/flujo-centralizado.png -------------------------------------------------------------------------------- /docs/images/flujo-dictador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/flujo-dictador.png -------------------------------------------------------------------------------- /docs/images/flujo-integracion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/flujo-integracion.png -------------------------------------------------------------------------------- /docs/images/git-central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/git-central.png -------------------------------------------------------------------------------- /docs/images/git-distrib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/git-distrib.png -------------------------------------------------------------------------------- /docs/images/git-estados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/git-estados.png -------------------------------------------------------------------------------- /docs/images/git-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/git-local.png -------------------------------------------------------------------------------- /docs/images/github-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-changes.png -------------------------------------------------------------------------------- /docs/images/github-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-code.png -------------------------------------------------------------------------------- /docs/images/github-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-edit.png -------------------------------------------------------------------------------- /docs/images/github-flow-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-flow-merge.png -------------------------------------------------------------------------------- /docs/images/github-flow-merged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-flow-merged.png -------------------------------------------------------------------------------- /docs/images/github-flow-pr-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-flow-pr-created.png -------------------------------------------------------------------------------- /docs/images/github-flow-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-flow-pr.png -------------------------------------------------------------------------------- /docs/images/github-issues-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-issues-list.png -------------------------------------------------------------------------------- /docs/images/github-issues-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-issues-new.png -------------------------------------------------------------------------------- /docs/images/github-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-main.png -------------------------------------------------------------------------------- /docs/images/github-mergerequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-mergerequest.png -------------------------------------------------------------------------------- /docs/images/github-newrepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-newrepo.png -------------------------------------------------------------------------------- /docs/images/github-proyect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-proyect.png -------------------------------------------------------------------------------- /docs/images/github-pullconversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-pullconversation.png -------------------------------------------------------------------------------- /docs/images/github-pullrequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-pullrequest.png -------------------------------------------------------------------------------- /docs/images/github-pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-pushed.png -------------------------------------------------------------------------------- /docs/images/github-quicksetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-quicksetup.png -------------------------------------------------------------------------------- /docs/images/github-sshkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-sshkeys.png -------------------------------------------------------------------------------- /docs/images/github-topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/github-topbar.png -------------------------------------------------------------------------------- /docs/images/gitlab-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/gitlab-dashboard.png -------------------------------------------------------------------------------- /docs/images/gitlab-merge-ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/gitlab-merge-ff.png -------------------------------------------------------------------------------- /docs/images/gitlab-mergerequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/gitlab-mergerequest.png -------------------------------------------------------------------------------- /docs/images/gitlab-organizacion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/gitlab-organizacion.png -------------------------------------------------------------------------------- /docs/images/gitlab-proyecto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/gitlab-proyecto.png -------------------------------------------------------------------------------- /docs/images/logo-cuadrado-invertido.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/logo-cuadrado-invertido.svg -------------------------------------------------------------------------------- /docs/images/logoasl-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/logoasl-white.png -------------------------------------------------------------------------------- /docs/images/logoasl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/images/logoasl.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduccion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/introduccion.md -------------------------------------------------------------------------------- /docs/ramas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/ramas.md -------------------------------------------------------------------------------- /docs/referencias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/referencias.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/usoavanzado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/usoavanzado.md -------------------------------------------------------------------------------- /docs/usobasico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/docs/usobasico.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aulasoftwarelibre/taller-de-git/HEAD/uv.lock --------------------------------------------------------------------------------