GithubHelp home page GithubHelp logo

gistory's Introduction

소개

git의 내부를 분석하는데 도움을 주는 도구입니다.

설치방법

pip install gistory

사용방법

  1. .git이 있는 디렉토리로 이동합니다.
  2. gistory를 입력해서 실행합니다.
  3. 웹브라우저에서 localhost:8805 를 방문합니다.

소개영상

https://www.youtube.com/watch?v=KyGfapLpWhY

라이선스

MIT

gistory's People

Contributors

egoing avatar egoing2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

gistory's Issues

python 3.8버전 이상에서 MutableMapping 경로 변경

python 3.8버전 이상에서 MutableMapping의 경로가 collections 에서 collections.abc로 수정되었습니다.
아래와 같이 버전을 체크하여 경로를 수정하는 코드가 필요해 보입니다.

import sys
    if sys.version_info[:2] >= (3, 8):
        from collections.abc import MutableMapping as DictMixin
    else:
        from collections import MutableMapping as DictMixin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.