Ecco un elenco dettagliato di utili comandi Git, insieme a esempi illustrativi:
git init
Inizializza un nuovo repository Git nella directory del tuo progetto.
Esempio:
$ git init
Initialized empty Git repository in /path/to/your/project/.git/
git clone [url]
Clona un repository remoto dal server alla tua macchina locale.
Esempio:
$ git clone https://github.com/yourusername/your-repo.git
Cloning into 'your-repo'...
git add [file]
Aggiungi uno o più file all'area di staging per preparare un file commit.
Esempio:
$ git add index.html
$ git add *.css
git commit -m "message"
Creane uno nuovo commit con le modifiche che sono state aggiunte all'area di staging e includi il tuo commit messaggio.
Esempio:
$ git commit -m "Fix a bug in login process"
[main 83a9b47] Fix a bug in login process
1 file changed, 5 insertions(+), 2 deletions(-)
git status
Visualizza lo stato corrente del repository, inclusi i file modificati e l'area di staging.
Esempio:
$ git status
On branch main
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html
no changes added to commit(use "git add" and/or "git commit -a")
git log
Visualizza la commit cronologia del repository.
Esempio:
$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)
Author: Your Name <[email protected]>
Date: Mon Jul 13 12:34:56 2023 +0200
Fix a bug in login process
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2
Author: Your Name <[email protected]>
Date: Sun Jul 12 18:42:15 2023 +0200
Add new homepage
git branch
Elenca tutti i rami nel repository e contrassegna il ramo corrente.
Esempio:
$ git branch
* main
feature/add-new-feature
feature/fix-bug
git checkout [branch]
Passa a un altro ramo nel repository.
Esempio:
$ git checkout feature/fix-bug
Switched to branch 'feature/fix-bug'
git merge [branch]
Unisci un altro ramo nel ramo corrente.
Esempio:
$ git merge feature/add-new-feature
Updating 83a9b47..65c6017
Fast-forward
new-feature.html| 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 new-feature.html
git pull
Recupera e integra le modifiche da un repository remoto nel ramo corrente.
Esempio:
$ git pull origin main
From https://github.com/yourusername/your-repo
* branch main -> FETCH_HEAD
Already up to date.
git push
Invia le modifiche dal ramo corrente a un repository remoto.
Esempio:
$ git push origin main
git remote add [name] [url]
Aggiungi un nuovo server remoto al tuo elenco di repository remoti.
Esempio:
$ git remote add upstream https://github.com/upstream-repo/repo.git
git fetch
Scarica le modifiche dai repository remoti ma non integrale nel ramo corrente.
Esempio:
$ git fetch origin
git diff
Confronta le modifiche tra l'area di staging e i file tracciati.
Esempio:
$ git diff
git reset [file]
Rimuovere un file dall'area di staging e riportarlo allo stato precedente.
Esempio:
$ git reset index.html
git stash
salvare temporaneamente le modifiche senza commit per lavorare su un ramo diverso senza eseguirne il commit.
Esempio:
$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message
git remote -v
Elenca i server remoti e i relativi indirizzi URL.
Esempio:
$ git remote -v
origin https://github.com/yourusername/your-repo.git(fetch)
origin https://github.com/yourusername/your-repo.git(push)
upstream https://github.com/upstream-repo/repo.git(fetch)
upstream https://github.com/upstream-repo/repo.git(push)