SóProvas


ID
3254920
Banca
COVEST-COPSET
Órgão
UFPE
Ano
2019
Provas
Disciplina
Engenharia de Software
Assuntos

Quando se usa o controle de versão através da ferramenta GIT, é possível interromper o fluxo de trabalho por meio da funcionalidade <STASH>. Pelo comando < git stash>, se faz possível:

Alternativas
Comentários
  • git stash arquiva (ou faz o stash) de alterações que você fez na cópia de trabalho durante um determinado período, para que você possa trabalhar em outra coisa, depois voltar e fazer a reaplicação mais tarde.

    O stashing é útil quando você precisa alternar com rapidez o contexto e trabalhar em outra coisa, mas está no meio da alteração de código e não está pronto para fazer commit.

    O comando git stash salva as alterações sem commit (tanto as preparadas quanto as não preparadas) para uso posterior e as reverte da cópia de trabalho.

    fonte: https://www.atlassian.com/br/git/tutorials/saving-changes/git-stash

  • Stash: armazena as modificações temporárias, mas não altera o HEAD. É possível interromper o fluxo de trabalho por meio da funcionalidade <STASH>. É possível também, por meio do stash criar uma ramificação (branching). O commando git stash não descarta as alterações e sim as coloca na pilha até que sejam necessárias novamente (armazena). Para tirá-las da pilha é só utilizar o commando git stash pop

    Fonte: Meus resumos a partir de questões

  • Comando que usa stash e cria uma nova branch (branching) ao mesmo tempo :

    """

    Since you've already stashed your changes, all you need is this one-liner:

    git stash branch <branchname> [<stash>]

    From the docs (https://www.kernel.org/pub/software/scm/git/docs/git-stash.html):

    Creates and checks out a new branch named <branchname> starting from the commit at which the <stash> was originally created, applies the changes recorded in <stash> to the new working tree and index. If that succeeds, and <stash> is a reference of the form stash@{<revision>}, it then drops the <stash>. When no <stash> is given, applies the latest one.

    This is useful if the branch on which you ran git stash save has changed enough that git stash apply fails due to conflicts. Since the stash is applied on top of the commit that was HEAD at the time git stash was run, it restores the originally stashed state with no conflicts.

    """

    Fonte: https://stackoverflow.com/questions/6925099/git-stash-changes-apply-to-new-branch