2 Repos
Retrieves the content of a specific file as it existed in a given commit by locating the commit and extracting the blob.
Distinct from File-Based Commit Automations: Distinct from File-Based Commit Automations: focuses on reading file content from existing commits, not automating new commits.
Explore 2 awesome GitHub repositories matching development tools & productivity · Commit File Content Readers. Refine with filters or upvote what's useful.
NodeGit is a native Node.js binding library that wraps the libgit2 C API, providing direct Git repository operations from JavaScript without shelling out to the Git command-line interface. It exposes Git operations such as cloning remote repositories, opening local repositories, reading file contents from specific commits, and walking through commit history, all through a Promise-based asynchronous API that prevents event loop starvation by offloading blocking operations to a worker pool. The library distinguishes itself by bridging the C/JavaScript boundary through N-API, with reference-coun
Retrieves a specific file's content from a given commit by locating the commit and extracting the blob.
GitGutter is a Git diff visualization tool and plugin for the Sublime Text editor. It interfaces with the Git binary to provide real-time tracking of modified and untracked files, visualizing version control status directly within the editor gutter to mark inserted, modified, or deleted lines. The tool enables navigation between modified code hunks and the inspection of commit metadata via hover popups. It allows users to define specific branches, tags, or commits as reference points for calculating changes and provides the ability to revert modified hunks or copy original committed text to t
Allows users to copy original committed text to the clipboard or restore specific hunks.