# git-history **Repository Path**: mirrors/git-history ## Basic Information - **Project Name**: git-history - **Description**: Git History 是一个可以轻松快速浏览 GitHub 文件操作历史记录的工具,该工具的功能和使用方法简洁明了,只要将任何文件的 URL 中的“github.com”替换成“ - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 10 - **Forks**: 3 - **Created**: 2019-02-09 - **Last Updated**: 2025-08-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
demo
# [Git History](https://githistory.xyz) Quickly browse the history of files in any git repo: 1. Go to a file in **GitHub** (or **GitLab**, or **Bitbucket**) 1. Replace `github.com` with `github.githistory.xyz` 1. There's no step three [Try it](https://github.githistory.xyz/babel/babel/blob/master/packages/babel-core/test/browserify.js) > If you like this project consider [backing my open source work on Patreon!](https://patreon.com/pomber) > And follow [@pomber](https://twitter.com/pomber) on twitter for updates. ## Extensions ### Browsers You can also add an `Open in Git History` button to GitHub, GitLab and Bitbucket with the [Chrome](https://chrome.google.com/webstore/detail/github-history-browser-ex/laghnmifffncfonaoffcndocllegejnf) and [Firefox](https://addons.mozilla.org/firefox/addon/github-history/) extensions.
Or you can use a bookmarklet. ```javascript javascript: (function() { var url = window.location.href; var regEx = /^(https?\:\/\/)(www\.)?(github|gitlab|bitbucket)\.(com|org)\/(.*)$/i; if (regEx.test(url)) { url = url.replace(regEx, "$1$3.githistory.xyz/$5"); window.open(url, "_blank"); } else { alert("Not a Git File URL"); } })(); ```
### Local Repos You can use Git History for local git repos with the [CLI](https://github.com/pomber/git-history/tree/master/cli) or with the [VS Code extension](https://marketplace.visualstudio.com/items?itemName=pomber.git-file-history). ## Support Git History ### Sponsors Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/git-history#sponsor)] selefra ### Backers Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/git-history#backer)] ### Thanks

Browser testing via LambdaTest

### Credits Based on these amazing projects: - [Prism](https://github.com/PrismJS/prism) by [Lea Verou](https://twitter.com/leaverou) - [jsdiff](https://github.com/kpdecker/jsdiff) by [Kevin Decker](https://twitter.com/kpdecker) - [Night Owl](https://github.com/sdras/night-owl-vscode-theme) by [Sarah Drasner](https://twitter.com/sarah_edo) ## License MIT