Skip to content

Instantly share code, notes, and snippets.

View ioritz1993's full-sized avatar
🌴
On vacation

Ioritz ioritz1993

🌴
On vacation
View GitHub Profile
@ioritz1993
ioritz1993 / download-all-repos.sh
Last active June 5, 2024 00:17 — forked from vke-code/download-all-repos.sh
New functionality added. The added functionality allows for two different actions, depending on the state of the repository: Cloning non-existent repositories - Pulling existing repositories.
#!/bin/bash
#To run the script in the folder where we want the new repositories from a user to be downloaded, or alternatively, to be updated.
if [ $# -eq 0 ]
then
echo "Usage: $0 <user_name> "
exit;
fi
@mrroot5
mrroot5 / add-markdown-index.md
Last active March 1, 2024 18:23
Agregar indice a markdown en wiki gitlab. Keywords: markdown, markdown index, index, gitlab, gitlab wiki, gitlab wiki index

Table of contents:

[[_TOC_]]

Intro

Diferentes formas de generar índices en Markdown.

GitLab

@BCasal
BCasal / Colaborar Proyecto GitHub.markdown
Last active September 19, 2024 07:04
Pasos a seguir para colaborar en un proyecto de GitHub

Cómo colaborar en un proyecto en GitHub

  • Fork del repositorio
  • Clonar el repositorio
  • Actualizar la rama master
  • Crear una rama
  • Hacer los cambios
  • Hacer un Pull Request

Fork del repositorio