Puede añadir archivos usando git add
, ejemplo git add README
, git add <folder>/*
o inclusogit add *
Luego use git commit -m "<Message>"
para confirmar archivos
Finalmente git push -u origin master
para empujar archivos.
Cuando realice modificaciones git status
que le proporcionen la lista de archivos modificados, agréguelos usando git add *
para todo o puede especificar cada archivo individualmente, luego git commit -m <message>
y finalmente,git push -u origin master
Ejemplo: supongamos que creó un archivo README, la ejecución git status
le da
$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# README
Ejecutar git add README
, los archivos se preparan para comprometerse. Luego, ejecute git status
nuevamente, debería darle: los archivos se han agregado y están listos para comprometerse.
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: README
#
nothing added to commit but untracked files present (use "git add" to track)
Entonces corre git commit -m 'Added README'
$ git commit -m 'Added README'
[master 6402a2e] Added README
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 README
Finalmente, git push -u origin master
para empujar la rama remota master
para el repositorio origin
.
$ git push -u origin master
Counting objects: 4, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 267 bytes, done.
Total 3 (delta 1), reused 0 (delta 0)
To xxx@xxx.com:xxx/xxx.git
292c57a..6402a2e master -> master
Branch master set up to track remote branch master from origin.
Los archivos se han enviado correctamente al repositorio remoto.
Ejecutar a git pull origin master
para garantizar que ha absorbido cualquier cambio aguas arriba
$ git pull origin master
remote: Counting objects: 12, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 8 (delta 4), reused 7 (delta 3)
Unpacking objects: 100% (8/8), done.
From xxx.com:xxx/xxx
* branch master -> FETCH_HEAD
Updating e0ef362..6402a2e
Fast-forward
public/javascript/xxx.js | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
create mode 100644 README
Si no desea fusionar los cambios ascendentes con su repositorio local, ejecute git fetch
para buscar los cambios y luego git merge
fusionar los cambios. git pull
es solo una combinación de fetch
y merge
.
Personalmente he usado gitimmersion - http://gitimmersion.com/ para llegar a la curva en git, es una guía paso a paso, si necesita documentación y ayuda