About 592,000 results
Open links in new tab
  1. Git - git-ls-tree Documentation

    You don’t want to give a tree that is not at the root level (e.g. git ls-tree -r HEAD:sub dir) in this case, as that would result in asking for sub/sub/dir in the HEAD commit.

  2. Sourcetree | Free Git GUI for Mac and Windows

    Sourcetree simplifies how you interact with your Git repositories so you can focus on coding. Visualize and manage your repositories through Sourcetree's simple Git GUI. Say goodbye to the command …

  3. gitk - Viewing full version tree in git - Stack Overflow

    Mar 19, 2011 · I am using the command line version of Git and gitk. I want to see the full version tree, not just the part that is reachable from the currently checked out version.

  4. Git - Working Tree - GeeksforGeeks

    Oct 9, 2025 · The working tree in Git consists of all the files and folders in your project outside the .git folder. It represents the current state of your project on your local system. Any modifications, …

  5. Mastering the Git Tree: A Quick Guide to Visualizing History

    What is a Git Tree? A Git tree is a fundamental concept in Git that represents the state and structure of your project at a given moment. It organizes the different elements of your repository, including …

  6. What is a tree in Git? - Initial Commit

    Sep 11, 2022 · When you run git commit, a proper tree (in the format above) is built up in memory from the cache entries in the index file, and referenced as the "root tree" in the new commit object.

  7. Exploring the 'git ls-tree' Command (with examples)

    Dec 17, 2024 · The git ls-tree command is a versatile tool within the Git version control system that allows users to explore the contents of tree objects, which represent directories in a Git repository.

  8. What is a Git working tree? - Graphite.dev

    When you clone a repository, Git creates a working tree that contains the latest version of every file from the repository. As you make changes, these modifications are only in your working tree until you …

  9. Git - git-worktree Documentation

    A git repository can support multiple working trees, allowing you to check out more than one branch at a time. With git worktree add a new working tree is associated with the repository, along with additional …

  10. Understanding, Inspecting, and Working With the Commit Tree

    Mar 4, 2024 · In this tutorial, we explore ways to navigate the commit tree for activities like tracing ancestors of Git branches. First, we explore the three trees of Git. After that, we focus on the commit …