What is the translation of " GIT ADD " in English?

Examples of using Git add in Portuguese and their translations into English

{-}
  • Colloquial category close
  • Official category close
  • Medicine category close
  • Financial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Computer category close
  • Official/political category close
Use esse comando para"desfazer" um git add arquivos.
Use this command to"undo" a git add files.
Digite git add. para adicionar todos os seus arquivos.
Type git add. to add all of your files.
Para passar a monitorar um novo arquivo,use o comando git add.
In order to begin tracking a new file,you use the command git add.
Agora vamos rodar o comando git add para selecionar o arquivo benchmarks.
Let's run git add now to stage the benchmarks.
Git add arquivos copia arquivos(em seus estados atuais) para o stage.
Git add files copies files(at their current state) to the stage.
Faça suas alterações no código git add[… arquivos] git commit.
Do your code changes git add[… files] git commit.
O comando git add recebe um caminho de um arquivo ou diretório;
The git add command takes a path name for either a file or a directory;
Alguém acidentalmente faz um commit sem pensar de um arquivo binário gigante com git add.
Someone accidentally commits a huge binary file with a thoughtless git add.
O oposto de git add, git rm remove arquivos do branch atual.
The opposite of git add, git rm removes files from the current working tree.
Acontece que o Git seleciona um arquivo exatamente como ele era quando o comando git add foi executado.
It turns out that Git stages a file exactly as it is when you run the git add command.
Note que, neste caso, você não precisa rodar o git add no arquivo benchmarks. rb antes de fazer o commit.
Notice how you don't have to run git add on the benchmarks. rb file in this case before you commit.
Se você executar git add com a opção-i ou--interactive,Git entra em um modo interativo de shell, exibindo algo desse tipo.
If you run git add with the-i or--interactive option,Git goes into an interactive shell mode, displaying something like this.
Depois que você resolveu cada uma dessas seções em cada arquivo com conflito,rode git add em cada arquivo para marcá-lo como resolvido.
After you have resolved each of these sections in each conflicted file,run git add on each file to mark it as resolved.
Git commit-a é equivalente a executar git add em todos os arquivos que existiam no último commit, e então executar git commit.
Git commit-a is equivalent to running git add on all filenames that existed in the latest commit, and then running git commit.
Se você commitar neste ponto,a versão do arquivo no momento em que você rodou o comando git add é a que estará na captura(snapshot) do histórico.
If you commit at this point,the version of the file at the time you ran git add is what will be in the historical snapshot.
Podes conseguir isto com alguns comandos git add que especificam os arquivos que desejas acompanhar, seguidos de git commit.
You can accomplish that with a few git add commands that specify the files you want to track, followed by a git commit.
Por exemplo, supõe que tenhas mudado dois arquivos e que as confirmações como duas mudanças separadas, masacidentalmente digitaste git add* e preparaste os dois.
For example, let's say you have changed two files and want to commit them as two separate changes, butyou accidentally type git add* and stage them both.
Você pode realizar isso com poucos comandos git add que especificam quais arquivos você quer monitorar, seguido de um commit.
You can accomplish that with a few git add commands that specify the files you want to track, followed by a commit.
Gitignore para que o Git veja-os como arquivos untracked outentar coloca-los como stagged quando executar o git add sobre eles, como discutido no Capítulo 2.
Gitignore file to have Git not see themas untracked files or try to stage them when you run git add on them, as discussed in Chapter 2.
Você pode usar git reset-p,git checkout-p, ou git add-p em vez de(ou além de) especificar arquivos para selecionar interativamente partes de arquivos para copiar.
You can use git reset-p,git checkout-p, or git add-p instead of(or in addition to) specifying particular files to interactively choose which hunks copy.
Por exemplo, vamos dizer que você alterou dois arquivos e quer fazer o commit deles como duas modificações separadas, masvocê acidentalmente digitou git add* e colocou os dois na área de seleção.
For example, let's say you have changed two files and want to commit themas two separate changes, but you accidentally type git add* and stage them both.
Se você modificar um arquivo depois que rodou o comando git add, terá de rodar o git add de novo para selecionar a última versão do arquivo.
If you modify a file after you run git add, you have to run git add again to stage the latest version of the file.
Finalmente, você não precisa estar no modo interativo para adicionar um arquivo parcialmente- você pode executar o mesmo script usando git add-p ou git add--patch na linha de comando.
Finally, you don't need to be in interactive add mode to do the partial-file staging- you can start the same script by using git add-p or git add--patch on the command line.
Para selecioná-lo, utilize o comando git add é um comando com várias funções- você o utiliza para monitorar novos arquivos, selecionar arquivos, e para fazer outras coisas como marcar como resolvido aquivos com conflito.
To stage it, you run the git add command it's a multipurpose command- you use it to begin tracking new files, to stage files, and to do other things like marking merge-conflicted files as resolved.
Você deve se lembrar quequando rodou o comando git init anteriormente, logo em seguida rodou o comando git add(arquivos)- fez isso para passar a monitorar os arquivos em seu diretório.
You may recall thatwhen you ran git init earlier, you then ran git add(files)- that was to begin tracking files in your directory.
Informar a opção-a ao comando git commit faz com que o Git selecione automaticamente cada arquivo que estásendo monitorado antes de realizar o commit, permitindo que você pule a parte do git add.
Providing the-a option to the git commit command makes Git automatically stage every file that is already tracked before doing the commit, letting you skip the git add part.
Se algumas das alterações modificarem o mesmo arquivo,tente usar git add--patch para preparar partes de arquivos coberto em detalhes no Capítulo 6.
If some of the changes modify the same file,try to use git add--patch to partially stage files covered in detail in Chapter 6.
Isso é essencialmente o que o Git faz quando você executa os comandos git add e git commit- ele armazena blobs dos arquivos que foram alterados, atualiza o índice, escreve árvores, e escreve objetos commit que fazem referência às árvores de nível superior e os commits que vieram imediatamente antes deles.
This is essentially what Git does when you run the git add and git commit commands- it stores blobs for the files that have changed, updates the index, writes out trees, and writes commit objects that reference the top-level trees and the commits that came immediately before them.
Rb como estava na última vez que você rodou o comando git add é que será incluída no commit, não a versão do arquivo que estará no seu diretório de trabalho quando rodar o comando git commit.
Rb as it was when you last ran the git add command is how it will go into the commit, not the version of the file as it looks in your working directory when you run git commit.
Se você apagar o subdiretório eem seguida executar submodule add, Git exibe isto.
If you delete the subdirectory andthen run submodule add, Git yells at you.
Results: 36, Time: 0.04

How to use "git add" in a sentence

Caso contrário, o padrão de git add é procurar os arquivos no diretório de trabalho e, se você especificar os arquivos excluídos, não os encontrará.
Mas eu não consegui encontrar um lugar explicando o que o git add * faz.
O comando git add [-all | -A] é idêntico ao git add ..
Eu descobri algumas perguntas sobre stackoverflow sobre a diferença entre o git add.
Perguntas do 'git-add' - levitrasi.net Questions tagged 'git-add' git -add - Adicionar conteúdo de arquivo ao índice Como adicionar um diretório vazio ao repositório Git?
Ao usar o git-add com as opções ‘–all’ ou ‘–update’, você pode obter mais do que queria.
Para fazer isso digite o comando git add nome-do-arquivo-incluindo-extensão Se você precisa adicionar todos os arquivos do diretório, basta digitar: Saber o status do projeto é importante.
O ponto é que agora o processo vai ser: git status para ver o que modificou git add e git commit para registrar as mudanças.
Você pode usar git add -u para organizar somente os arquivos excluídos.
Diferença entre “git add --all”, “git add .” e “git add -u” Qual a diferença entre git pull e git fetch?

Git add in different Languages

Word-for-word translation

Top dictionary queries

Portuguese - English