https://github.com/antonygz/git-y-gitbub-para-novatos
Guía práctica para aprender Git y GitHub desde cero.
https://github.com/antonygz/git-y-gitbub-para-novatos
beginner git github guide version-control
Last synced: 5 months ago
JSON representation
Guía práctica para aprender Git y GitHub desde cero.
- Host: GitHub
- URL: https://github.com/antonygz/git-y-gitbub-para-novatos
- Owner: AntonyGZ
- Created: 2025-04-03T05:11:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-03T12:53:17.000Z (about 1 year ago)
- Last Synced: 2025-06-16T08:50:48.522Z (about 1 year ago)
- Topics: beginner, git, github, guide, version-control
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
## 📌 `Git-y-github-para-novatos`
Este repositorio servirá como una guía básica para aprender Git y GitHub.
### **Estructura del `README.md`:**
```md
# 🚀 Guía Básica de Git y GitHub
📌 **Un repositorio para aprender los comandos esenciales de Git y cómo trabajar con GitHub.**
## 📂 Contenido
✅ Configuración inicial de Git
✅ Comandos básicos (`git init`, `git add`, `git commit`, `git push`)
✅ Ramas y fusiones (`git branch`, `git merge`)
✅ Cómo clonar y contribuir a proyectos
✅ Uso de GitHub Pages
## 🛠️ Comenzando
1. **Configurar Git** en tu PC:
```bash
git config --global user.name "Tu Nombre"
git config --global user.email "tu@email.com"
2. **Inicializar un repositorio:**
git init
3. **Subir tu código a GitHub:**
git add .
git commit -m "Mi primer commit"
git push origin main
4. **Explora más en la guía completa dentro del repositorio.**