About 13,200 results
Open links in new tab
  1. Git - git-checkout Documentation

    git checkout [<branch>] To prepare for working on <branch>, switch to it by updating the index and the files in the working tree, and by pointing HEAD at the branch. Local modifications to …

  2. Git - git-checkout Documentation

    DESCRIPTION Updates files in the working tree to match the version in the index or the specified tree. If no paths are given, git checkout will also update HEAD to set the specified branch as …

  3. Git - Basic Branching and Merging

    Figure 18. A simple commit history You’ve decided that you’re going to work on issue #53 in whatever issue-tracking system your company uses. To create a new branch and switch to it …

  4. Git - git-checkout Documentation

    git checkout échoue quand la branche voulue est déjà extraite ou utilisée dans un autre arbre de travail. Cette option force quand même l’extraction de la branche.

  5. Git - git-branch Documentation

    Tells git branch, git switch and git checkout to set up new branches so that git-pull [1] will appropriately merge from the starting point branch. Note that even if this option is not set, this …

  6. Git - git-switch Documentation

    You can use the @{-<N>} syntax to refer to the <N> -th last branch/commit switched to using git switch or git checkout operation. You may also specify - which is synonymous to @{-1}. This is …

  7. Git - git-checkout Documentation

    DESCRIÇÃO Atualiza os arquivos na árvore de trabalho para que correspondam à versão no índice ou na árvore determinada. Se nenhum "pathpec" for fornecido, o comando git checkout …

  8. Git - git-clone Documentation

    If you clone your repository using this option and then delete branches (or use any other Git command that makes any existing commit unreferenced) in the source repository, some …

  9. Git - sparse-checkout Documentation

    Since checkout is one of those commands that tries to remove transient differences in the sparse specification, it makes sense to use the corrected sparse specification (i.e. …

  10. Git Cheat Sheet

    Diff Staged/Unstaged Changes Diff all staged and unstaged changes: git diff HEAD