TutorialesTutorials · PrincipianteBeginner

Git vs GitHub: la diferencia que todos confunden (explicada fácil)Git vs GitHub: the difference everyone mixes up (made simple)

Git y GitHub no son lo mismo. Aquí entiendes la diferencia en 1 minuto, con un ejemplo claro y el glosario de palabras que vas a oír todo el tiempo.Git and GitHub are not the same thing. Understand the difference in 1 minute, with a clear example and a glossary of the words you'll hear all the time.

  • Git
  • GitHub

Es la confusión #1 de quien empieza: Git y GitHub suenan igual, pero hacen cosas distintas. En 1 minuto te queda clarísimo. Toca cada bloque para abrirlo.

It’s the #1 beginner mix-up: Git and GitHub sound alike but do different things. One minute and it’s crystal clear. Tap each block to open it.

¿Qué es Git?What is Git?

Git es una herramienta que vive en tu computadora y guarda versiones de tu trabajo. Cada vez que terminas algo, haces un “commit” (una foto del proyecto) y puedes volver a cualquier versión anterior. Funciona aunque no tengas internet.

Git is a tool that lives on your computer and saves versions of your work. Whenever you finish something you make a “commit” (a snapshot of the project) and you can go back to any earlier version. It works even with no internet.

¿Qué es GitHub?What is GitHub?

GitHub es una página web donde subes esos proyectos para guardarlos en la nube, compartirlos, colaborar y publicarlos (por ejemplo, conectándolo a Vercel). Es como Google Drive, pero pensado para código y con historial de versiones.

GitHub is a website where you upload those projects to keep them in the cloud, share them, collaborate and publish them (for example, by connecting it to Vercel). It’s like Google Drive, but built for code and with version history.

La diferencia en una fraseThe difference in one sentence

Git crea las versiones en tu compu. GitHub las guarda y comparte en la nube.

Analogía: Git es la cámara 📸 que toma las fotos; GitHub es el álbum en línea donde las subes. Puedes usar Git sin GitHub, pero juntos son el centro de todo lo que construyes.

Git creates the versions on your computer. GitHub stores and shares them in the cloud.

Analogy: Git is the camera 📸 that takes the photos; GitHub is the online album where you upload them. You can use Git without GitHub, but together they’re the hub of everything you build.

¿Necesito los dos?Do I need both?

Sí, y van juntos: instalas Git una vez en tu computadora, creas una cuenta gratis en GitHub, y listo. Tu editor (VS Code) y tu IA (Claude Code) usan Git por debajo para subir todo a GitHub.

👉 Si quieres el paso a paso, mira el tutorial GitHub para principiantes.

Yes, and they go together: you install Git once on your computer, create a free GitHub account, and that’s it. Your editor (VS Code) and your AI (Claude Code) use Git under the hood to push everything to GitHub.

👉 For the step-by-step, see the GitHub for beginners tutorial.

Glosario: palabras que vas a oírGlossary: words you'll hear
PalabraQué significa
Repo (repositorio)La carpeta de tu proyecto en Git/GitHub
CommitGuardar una versión con un mensaje
PushSubir tus commits a GitHub
PullBajar a tu compu los cambios de GitHub
CloneCopiar un repo de GitHub a tu compu
Branch (rama)Una versión paralela para probar sin romper lo principal
WordWhat it means
Repo (repository)Your project’s folder in Git/GitHub
CommitSave a version with a message
PushUpload your commits to GitHub
PullDownload GitHub’s changes to your computer
CloneCopy a GitHub repo to your computer
BranchA parallel version to experiment without breaking the main one