2020-10-27 11:55:47 +01:00
[
2021-02-18 17:29:48 +01: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!" ,
"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 12:18:31 +02:00
"command" : "git_IT 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." ,
"it_IT" : "Crea la copia 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 12:18:31 +02:00
"command" : "git_IT 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 12:18:31 +02:00
"command" : "git_IT 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 12:18:31 +02:00
"command" : "git_IT checkout [commit_IT, ref]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Drag this card to a commit_IT or to a branch to travel to it_IT!" ,
"it_IT" : "Sposta questa carta su un commit_IT o su una branch per viaggiare in quello specifico momen_ENto."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "checkout-file" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT 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." ,
"it_IT" : "Resetta i cambiamen_ENti 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 12:18:31 +02:00
"command" : "git_IT checkout [commit_IT, ref] [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Get the file conten_ENts from the specified commit_ITs, and reset both the working directory, as well as the index, to it_IT." ,
"it_IT" : "Pren_ENdi il conten_ENuto del file da uno specifico commit_ITs 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 12:18:31 +02:00
"id" : "commit_IT-a" ,
"command" : "git_IT commit_IT -a" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make a new commit_IT, after automatically adding all changes to the index.\nYou'll be asked to en_ENter a short description of what you changed." ,
"it_IT" : "Crea un nuovo commit_IT, dopo aver aggiunto automatico tutti i cambiamen_ENti all'indice.|n Ti verrà chiesto di inserire una piccola descrizione di cosa hai cambiato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 12:18:31 +02:00
"id" : "commit_IT-auto" ,
"command" : "git_IT add .; git_IT commit_IT" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make a new commit_IT containing your curren_ENt en_ENvironmen_ENt! Type in a description of what changed!" ,
"it_IT" : "Crea un nuovo commit_IT conten_ENen_ENte il tuo ambien_ENte attuale! Scrivi nella descrizione di cosa hai cambiato"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "merge" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT merge [commit_IT, ref]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Merge the specified timeline into yours. If necessary, will create a merge commit_IT." ,
"it_IT" : "Unisce la linea temporale specificata con la tua. Se necessario, creerà un commit_IT di unione."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "merge-abort" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT merge --abort" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Abort the curren_ENt merge attempt, and reconstruct the previous state." ,
"it_IT" : "Interrompe il corren_ENte ten_ENtativo di unione e ricostruisce lo stato preceden_ENte."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rebase" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT rebase [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Put the even_ENts in your curren_ENt timeline on top of the specified one." ,
"it_IT" : "Mette l'even_ENto nella tua, corren_ENte, linea temporale sopra a quello specificato."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "pull" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT pull" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Get someone else's version of the curren_ENt timeline, and try to merge it_IT into yours." ,
"it_IT" : "Pren_ENde la versione corren_ENte della line temporale di qualcun'altro 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 12:18:31 +02:00
"command" : "git_IT fetch [remote]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Get a someone else's version of the curren_ENt timeline." ,
"it_IT" : "Pren_ENde la versione, corren_ENte, della linea temporale di qualcun'altro"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "push" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT push" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Give the curren_ENt timeline to someone else." ,
"it_IT" : "Invia la corren_ENte line temporale 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 12:18:31 +02:00
"command" : "git_IT rebase -i [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make changes to the even_ENts in your curren_ENt timeline, back to the commit_IT you drag this to." ,
"it_IT" : "Apporta modifiche agli even_ENti nella tua timeline corren_ENte, torna al commit_IT su cui lo trascini "
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rebase-continue" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT rebase --continue" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Continue the curren_ENt rebasing process." ,
"it_IT" : "Continua il corren_ENte processo di ricostruzione"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset-hard" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT reset --hard [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Move the branch you're on to the specified commit_IT." ,
"it_IT" : "Muove il tuo branch (ramo) nello specifico commit_IT."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT reset [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Jump to the commit_IT, and update the index. Keep the curren_ENt en_ENvironmen_ENt." ,
"it_IT" : "Salta alcommit_IT e aggiorna l'indice. Mette l'ambien_ENte attuale."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reset-file" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT reset [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Reset the index version of a file to the version in the commit_IT you're on." ,
"it_IT" : "Resetta la versione dell'indice di un file alla versione del commit_IT 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 12:18:31 +02:00
"command" : "git_IT cherry-pick [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Repeat the specified action on top of your curren_ENt timeline." ,
"it_IT" : "Ripete l'azione specificata sulla corren_ENte linea temporale"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "revert" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT revert [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make a new commit_IT that reverts the changes of the speicified commit_IT." ,
"it_IT" : "Crea un nuovo commit_IT che annula le modifiche dello specifico commit_IT"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "bisect-start" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT bisect start" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Start looking for the commit_IT where things got bad." ,
"it_IT" : "Inizia a cercare il commit_IT 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 12:18:31 +02:00
"command" : "git_IT bisect good" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "State that the curren_ENt commit_IT is good! When_EN you're automatically transferred, keep playing the `good` and `bad` cards!" ,
"it_IT" : "Dichiara che l'attuale commit_IT è buono! 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" : "bisect-bad" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT bisect bad" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "State that the curren_ENt commit_IT is bad! When_EN you're automatically transferred, keep playing the `good` and `bad` cards!" ,
"it_IT" : "Dichiara che l'attuale commit_IT 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 12:18:31 +02:00
"command" : "git_IT add [file]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Update the index version of the file to it_ITs curren_ENt real conten_ENt." ,
"it_IT" : "Aggiorna l'indice del file con il, corren_ENte, reale conten_ENuto."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "rm" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT 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." ,
"it_IT" : "Cancella il file sia dalla corren_ENte directory che dall'indice."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
2021-09-14 12:18:31 +02:00
"id" : "commit_IT" ,
"command" : "git_IT commit_IT" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Make a commit_IT from the curren_ENt index." ,
"it_IT" : "Crea un commit_IT dal corren_ENte indice."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "show" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT show [commit_IT]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Show what changed in the commit_IT." ,
"it_IT" : "Mostra cosa è cambiato nel commit_IT."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "branch" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT branch [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Create a new branch at your curren_ENt location." ,
"it_IT" : "Crea un nuovo branch (ramo) nella tua corren_ENte posizione."
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "branch-delete" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT 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." ,
"it_IT" : "Cancella un branch.(ramo)"
2021-09-06 12:28:35 +02:00
}
2021-02-18 17:29:48 +01:00
} ,
{
"id" : "reflog" ,
2021-09-14 12:18:31 +02:00
"command" : "git_IT 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." ,
"it_IT" : "Mostra un log di dove il riferimen_ENto puntava 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 12:18:31 +02:00
"id" : "file-ren_EName" ,
2021-02-18 17:29:48 +01:00
"command" : "mv [file] [string]" ,
2021-09-06 12:28:35 +02:00
"description" : {
2021-09-14 12:18:31 +02:00
"en_EN" : "Ren_EName a file." ,
"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
]