Skip to content

Instantly share code, notes, and snippets.

@lrlineroa
Last active November 1, 2022 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lrlineroa/0415dcdf8f6b5b0e6765b56ee3371a70 to your computer and use it in GitHub Desktop.
Save lrlineroa/0415dcdf8f6b5b0e6765b56ee3371a70 to your computer and use it in GitHub Desktop.
git --version
mkdir MyRepo
mkdir "MyRepo"
echo "hola como estás 1" > hola.txt
cat hola.txt
git init
git status
git add .
git commit -m "mi primer commit en git"
comandos de configuración iniciales:
git config --global user.name "minombre"
git config --global user.email "minombre@micorreo.com"
echo "hola como estás 2" >> hola.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment