introducción a git

Post on 03-Sep-2014

783 Views

Category:

Technology

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Introducción básica a Git. Conceptos para empezar a usar Git

TRANSCRIPT

GitSistema Distribuido de Control de

Versiones (DVCS)

Centralizado Version Control System

Distributed Version Control System

Basics - Repository

Basics - Branches

Basics - Merge

Configuración

# Configure the user which will be used by gitgit config --global user.name "Juan Perez"

# Same for the email addressgit config --global user.email "email@gmail.com"

Empecemos

# Creamos un directorio para nuestro nuevo proyecto

mkdir ~/hellogit# Agregamos un archivovim index.html

# Initialize the local Git repositorygit init# Add all (files and directories) to the Git

repositorygit add .# Make a commit of your file to the local repositorygit commit -m "Initial commit"# Show the log filegit log

Primeros Pasos

El segundo commit

# Check the changes via the diff command git diff

# Commit the changes, -a will commit changes for modified files

# but will not add automatically new filesgit commit -a -m "These are new changes"

Github git client

GUIs

Clientes Mac:

• Gitbox• Tower• Gihub

Clientes Windows:

• TortoiseGit• SmartGit• Github

Algunos GUIs

top related