È possibile aggiungere file utilizzando git add
, ad esempio git add README
, git add <folder>/*
o anchegit add *
Quindi utilizzare git commit -m "<Message>"
per eseguire il commit dei file
Finalmente git push -u origin master
per spingere i file.
Quando esegui modifiche git status
che ti danno l'elenco dei file modificati, aggiungili usando git add *
per tutto o puoi specificare ogni file singolarmente, quindi git commit -m <message>
e infine,git push -u origin master
Esempio: supponiamo che tu abbia creato un file README, mentre l'esecuzione git status
ti dà
$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# README
Esegui git add README
, i file vengono messi in scena per il commit. Quindi esegui di git status
nuovo, dovrebbe darti: i file sono stati aggiunti e pronti per il commit.
$ 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)
Quindi corri 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
Infine, git push -u origin master
per inviare il ramo remoto master
per il repository 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.
I file sono stati trasferiti correttamente nel repository remoto.
Esecuzione di un git pull origin master
per assicurarsi di aver assorbito eventuali modifiche a monte
$ 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
Se non si desidera unire le modifiche a monte con il proprio repository locale, eseguire git fetch
per recuperare le modifiche e quindi git merge
per unire le modifiche. git pull
è solo una combinazione di fetch
e merge
.
Ho usato personalmente gitimmersion - http://gitimmersion.com/ per salire su curva su git, è una guida passo-passo, se hai bisogno di documentazione e aiuto