2020-10-27 11:55:47 +01:00
[
2021-02-18 17:29:48 +01:00
{
2021-09-14 15:16:20 +02:00
"id" : "init" ,
"command" : "git init" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Drag this card into the empty space above to initialize the time machine!" ,
2021-09-14 15:25:00 +02:00
"it_IT" : "Trascina questa carta nell'area vuota sopra per inizializzare la macchina del tempo"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "clone" ,
2021-09-14 15:16:20 +02:00
"command" : "git clone ../[remote] ." ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Create your own copy of someone else's repo." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea la tua copia personale del Repo di qualcun'altro."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "config-name" ,
2021-09-14 15:16:20 +02:00
"command" : "git config --global user.name [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Set your name.\n\n(Will not change anything outside of this game.)" ,
"it_IT" : "Imposta il tuo nome.\n\n(Non cambierà nulla all'infuori del gioco.)"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "config-email" ,
2021-09-14 15:16:20 +02:00
"command" : "git config --global user.email [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Set your email address." ,
"it_IT" : "Imposta la tua e-mail."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "checkout" ,
2021-09-14 15:16:20 +02:00
"command" : "git checkout [commit, ref]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Drag this card to a commit or to a branch to travel to it!" ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Trascina questa carta su un commit o su un branch per spostarti su di esso."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "checkout-file" ,
2021-09-14 15:16:20 +02:00
"command" : "git checkout [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Reset changes in a local file." ,
2021-09-14 15:16:20 +02:00
"it_IT" : "Resetta i cambiamenti in un file locale"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "checkout-from" ,
2021-09-14 15:16:20 +02:00
"command" : "git checkout [commit, ref] [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Get the file contents from the specified commits, and reset both the working directory, as well as the index, to it." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Ottieni il contenuto dei file dai commit specificati e resetta sia la directory di lavoro sia l'indice."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 15:16:20 +02:00
"id" : "commit-a" ,
"command" : "git commit -a" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Make a new commit, after automatically adding all changes to the index.\nYou'll be asked to enter a short description of what you changed." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea un nuovo commit, dopo aver aggiunto automaticamente tutti i cambiamenti all'indice.\nDovrai inserire una breve descrizione di cosa hai cambiato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 15:16:20 +02:00
"id" : "commit-auto" ,
"command" : "git add .; git commit" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Make a new commit containing your current environment! Type in a description of what changed!" ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea un commit contenente il tuo ambiente attuale! Scrivi una descrizione di cosa è cambiato!"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "merge" ,
2021-09-14 15:16:20 +02:00
"command" : "git merge [commit, ref]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Merge the specified timeline into yours. If necessary, will create a merge commit." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Unisce la linea temporale specificata con la tua. Se necessario, creerà un commit di merge."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "merge-abort" ,
2021-09-14 15:16:20 +02:00
"command" : "git merge --abort" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Abort the current merge attempt, and reconstruct the previous state." ,
"it_IT" : "Interrompe il corrente tentativo di unione e ricostruisce lo stato precedente."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rebase" ,
2021-09-14 15:16:20 +02:00
"command" : "git rebase [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Put the events in your current timeline on top of the specified one." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Mette gli eventi della tua linea temporale corrente sulla linea temporale specificata."
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "pull" ,
2021-09-14 15:16:20 +02:00
"command" : "git pull" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Get someone else's version of the current timeline, and try to merge it into yours." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Prende la versione di qualcun'altro della temporale corrente e prova ad unirla alla tua."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "fetch" ,
2021-09-14 15:16:20 +02:00
"command" : "git fetch [remote]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Get a someone else's version of the current timeline." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Prende la versione di qualcun'altro della temporale corrente"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "push" ,
2021-09-14 15:16:20 +02:00
"command" : "git push" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Give the current timeline to someone else." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Invia la linea temporale corrente a qualcun'altro"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rebase-interactive" ,
2021-09-14 15:16:20 +02:00
"command" : "git rebase -i [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Make changes to the events in your current timeline, back to the commit you drag this to." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Cambia gli eventi della linea temporale fino al commit su cui hai trascinato questa scheda."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rebase-continue" ,
2021-09-14 15:16:20 +02:00
"command" : "git rebase --continue" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Continue the current rebasing process." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Continua il processo di rebasing"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset-hard" ,
2021-09-14 15:16:20 +02:00
"command" : "git reset --hard [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Move the branch you're on to the specified commit." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Sposta il branch su cui ti trovi al commit specificato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset" ,
2021-09-14 15:16:20 +02:00
"command" : "git reset [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Jump to the commit, and update the index. Keep the current environment." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Salta al commit e aggiorna l'indice. Mantieni l'ambiente attuale."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset-file" ,
2021-09-14 15:16:20 +02:00
"command" : "git reset [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Reset the index version of a file to the version in the commit you're on." ,
"it_IT" : "Resetta la versione dell'indice di un file alla versione del commit in cui sei"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "cherry-pick" ,
2021-09-14 15:16:20 +02:00
"command" : "git cherry-pick [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Repeat the specified action on top of your current timeline." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Ripete l'azione specificata, in cima alla linea temporale corrente"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "revert" ,
2021-09-14 15:16:20 +02:00
"command" : "git revert [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Make a new commit that reverts the changes of the speicified commit." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea un nuovo commit che annulla le modifiche del commit specificato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "bisect-start" ,
2021-09-14 15:16:20 +02:00
"command" : "git bisect start" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Start looking for the commit where things got bad." ,
"it_IT" : "Inizia a cercare il commit dove le cose sono andate storte"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "bisect-good" ,
2021-09-14 15:16:20 +02:00
"command" : "git bisect good" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "State that the current commit is good! When you're automatically transferred, keep playing the `good` and `bad` cards!" ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Dichiara che l'attuale commit è buono! Continua a giocare con le carte `buono` e `cattivo`!"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "bisect-bad" ,
2021-09-14 15:16:20 +02:00
"command" : "git bisect bad" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "State that the current commit is bad! When you're automatically transferred, keep playing the `good` and `bad` cards!" ,
"it_IT" : "Dichiara che l'attuale commit non è valido! Continua a giocare con le carte `buone` e `cattive`!"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "add" ,
2021-09-14 15:16:20 +02:00
"command" : "git add [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Update the index version of the file to its current real content." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Aggiorna la versione in indice del file con il contenuto attuale."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rm" ,
2021-09-14 15:16:20 +02:00
"command" : "git rm [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Delete a file both in the working directory, as well as the index." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Cancella un file sia dalla cartella di lavoro corrente che dall'indice."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 15:16:20 +02:00
"id" : "commit" ,
"command" : "git commit" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Make a commit from the current index." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea un commit dall'indice corrente."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "show" ,
2021-09-14 15:16:20 +02:00
"command" : "git show [commit]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Show what changed in the commit." ,
"it_IT" : "Mostra cosa è cambiato nel commit."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "branch" ,
2021-09-14 15:16:20 +02:00
"command" : "git branch [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Create a new branch at your current location." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Crea un nuovo branch alla posizione corrente."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "branch-delete" ,
2021-09-14 15:16:20 +02:00
"command" : "git branch -D [ref]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Delete a branch." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Cancella un branch."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reflog" ,
2021-09-14 15:16:20 +02:00
"command" : "git reflog [ref, head]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Display a log of where the ref pointed to in the past." ,
2021-09-24 20:54:49 +02:00
"it_IT" : "Mostra un log di dove il riferimento (ref) ha puntato in passato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "file-new" ,
"command" : "touch [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Create a new file." ,
"it_IT" : "Crea un nuovo file."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "file-delete" ,
"command" : "rm [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Delete a file." ,
"it_IT" : "Cancella un file."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 15:16:20 +02:00
"id" : "file-rename" ,
2021-02-18 17:29:48 +01:00
"command" : "mv [file] [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 15:16:20 +02:00
"en_EN" : "Rename a file." ,
2021-09-14 12:18:31 +02:00
"it_IT" : "Rinomina un file."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "file-copy" ,
"command" : "cp [file] [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make a copy of a file." ,
"it_IT" : "Crea una copia di un file."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
}
2020-10-27 11:55:47 +01:00
]