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 / Colaborar Proyecto GitHub.markdown
Created July 22, 2023 19:08 — forked from BCasal/Colaborar Proyecto GitHub.markdown
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

@ioritz1993
ioritz1993 / download-all-repos.sh
Last active July 22, 2023 19:28 — 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