From da9b099103e68a55b04a56088c9f2f529b2670c8 Mon Sep 17 00:00:00 2001 From: k-a-rthik Date: Thu, 23 Oct 2025 20:00:12 -0700 Subject: [PATCH 1/3] Add git-annex documentation in Spanish translation Created git-annex page for Spanish. --- pages.es/common/git-annex.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages.es/common/git-annex.md diff --git a/pages.es/common/git-annex.md b/pages.es/common/git-annex.md new file mode 100644 index 00000000000000..264e4b855f0b86 --- /dev/null +++ b/pages.es/common/git-annex.md @@ -0,0 +1,29 @@ +# git annex + +> Administra archivos con Git sin registrar su contenido. +> Cuando se anexa un archivo, su contenido se mueve a un almacén de clave-valor y se crea un enlace simbólico que apunta a dicho contenido. +> Más información aquí: . + +- Inicializa un repositorio con Git annex: + +`git annex init` + +- Añade un archivo: + +`git annex add {{ruta/al/archivo_o_directorio}}` + +- Muestra el estado actual de un archivo o directorio: + +`git annex status {{ruta/al/archivo_o_directorio}}` + +- Sincroniza un repositorio local con uno remoto: + +`git annex {{remoto}}` + +- Obtiene un archivo o directorio: + +`git annex get {{ruta/al/archivo_o_directorio}}` + +- Muestra ayuda: + +`git annex help` From 2a085fd85abc90cb5deada7964d3e3d4913c55f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 25 Oct 2025 13:54:03 -0300 Subject: [PATCH 2/3] Update pages.es/common/git-annex.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages.es/common/git-annex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.es/common/git-annex.md b/pages.es/common/git-annex.md index 264e4b855f0b86..352013f4e2e8f7 100644 --- a/pages.es/common/git-annex.md +++ b/pages.es/common/git-annex.md @@ -2,7 +2,7 @@ > Administra archivos con Git sin registrar su contenido. > Cuando se anexa un archivo, su contenido se mueve a un almacén de clave-valor y se crea un enlace simbólico que apunta a dicho contenido. -> Más información aquí: . +> Más información: . - Inicializa un repositorio con Git annex: From b799ce6f558b0ac8d1e88c93d6abd05e905034dd Mon Sep 17 00:00:00 2001 From: k-a-rthik Date: Sun, 26 Oct 2025 11:50:53 -0700 Subject: [PATCH 3/3] Added suggestion from @kant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Incorporated suggestion from @kant for better (natural) flow. Co-authored-by: Darío Hereñú --- pages.es/common/git-annex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.es/common/git-annex.md b/pages.es/common/git-annex.md index 352013f4e2e8f7..c6abc8428fcfbc 100644 --- a/pages.es/common/git-annex.md +++ b/pages.es/common/git-annex.md @@ -24,6 +24,6 @@ `git annex get {{ruta/al/archivo_o_directorio}}` -- Muestra ayuda: +- Muestra la ayuda: `git annex help`