Git

Search results for branching

  1. Branching Workflows

    /book/en/Git-Branching-Branching-Workflows

    Branching Workflows Now that you have the basics of branching and merging down, what can or should you do with them? In this section

  2. Branching and Merging

    /book/en/Appendix-C:-Git-Commands-Branching-and-Merging

    Branching and Merging There are just a handful of commands that implement most of the branching and merging functionality in Git.

  3. Basic Branching and Merging

    /book/en/Git-Branching-Basic-Branching-and-Merging

    Basic Branching and Merging Let’s go through a simple example of branching and merging with a workflow that you might use in the

  1. Summary

    /book/en/Git-Basics-Summary

    those changes, and viewing the history of all the changes the repository has been through. Next, we’ll cover Git’s killer feature: its branching model. prev | next

  2. A Short History of Git

    /book/en/Getting-Started-A-Short-History-of-Git

    , Git has evolved and matured to be easy to use and yet retain these initial qualities. It’s amazingly fast, it’s very efficient with large projects, and it has an incredible branching system for non

  3. Summary

    /book/en/Git-Branching-Summary

    Summary We’ve covered basic branching and merging in Git. You should feel comfortable creating and switching to new branches, switching between

  4. Working with Remotes

    /book/en/Git-Basics-Working-with-Remotes

    inspect it. We’ll go over what branches are and how to use them in much more detail in Git Branching.

  5. Branches in a Nutshell

    /book/en/Git-Branching-Branches-in-a-Nutshell

    Nearly every VCS has some form of branching support. Branching means you diverge from the main line of development and continue to do work without messing with that main line. In many VCS tools

  6. What is Git?

    /book/en/Getting-Started-What-is-Git?

    we cover Git branching in Git Branching. Nearly Every Operation Is Local

  7. Distributed Workflows

    /book/en/Distributed-Git-Distributed-Workflows

    "> This is also not limited to small teams. With Git’s branching model, it’s possible for hundreds of developers to successfully work on a single project through dozens of branches simultaneously

  8. git-cvsimport

    /docs/git-cvsimport

    time window the order of commits may be wrong. Problems related to branches: * Branches on which no commits have been made are not imported. * All files from the branching point are added to a

  9. git-switch

    /docs/git-switch

    corresponding remote, and then stripping the initial part up to the "*". This would tell us to use `hack` as the local branch when branching off of `origin/hack` (or `remotes/origin/hack`, or even `refs

  10. git-checkout

    /docs/git-checkout

    the refspec configured for the corresponding remote, and then stripping the initial part up to the "*". This would tell us to use `hack` as the local branch when branching off of `origin/hack` (or

  11. git-rebase

    /docs/git-rebase

    -merges`, the rebase will instead try to preserve the branching structure within the commits that are to be rebased, by recreating the merge commits. Any resolved merge conflicts or manual amendments

  12. git-config

    /docs/git-config

    boolean that enables branching support when using `--recurse-submodules` or `submodule.recurse=true`. Enabling this will allow certain commands to accept `--recurse-submodules` and certain commands

scroll-to-top