Metadata-Version: 2.1
Name: jupyterlab-git
Version: 0.5.0
Summary: A server extension for JupyterLab's git extension
Home-page: UNKNOWN
Author: Git Intern Team, Noah Stapp, Jenna Landy, Alena Mueller
License: UNKNOWN
Description: # jupyterlab-git
        
        [![Binder](https://beta.mybinder.org/badge.svg)](https://mybinder.org/v2/gh/jupyterlab/jupyterlab-git/master?urlpath=lab)
        
        [![Build Status](https://travis-ci.org/jupyterlab/jupyterlab-git.svg?branch=master)](https://travis-ci.org/jupyterlab/jupyterlab-git)
        
        A JupyterLab extension for version control using git
        
        ![](http://g.recordit.co/N9Ikzbyk8P.gif)
        
        ## Prerequisites
        
        - JupyterLab  
        
        ## Usage
        
        - Open the git extension from the *Git* tab on the left panel
        
        ## Install
        
        ```bash
        jupyter labextension install @jupyterlab/git
        ```
        
        ```bash
        pip install jupyterlab-git
        jupyter serverextension enable --py jupyterlab_git
        ```
        
        ## Development
        
        ### Contributing
        
        If you would like to contribute to the project, please read our [contributor documentation](https://github.com/jupyterlab/jupyterlab/blob/master/CONTRIBUTING.md).
        
        JupyterLab follows the official [Jupyter Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md).
        
        ### Team
        
        The Jupyter Git extension is part of [Project Jupyter](http://jupyter.org/) and is developed by an open community of contributors. Our maintainer team is accompanied by a much larger group of contributors to JupyterLab and Project Jupyter as a whole.
        
        JupyterLab Git's current maintainers are listed in alphabetical order, with affiliation, and main areas of contribution:
        
        - Tim George, Cal Poly (UI/UX design, strategy, management, user needs analysis).
        - Brian Granger, Cal Poly (co-creator, strategy, vision, management, UI/UX design,
          architecture).
        - Jenna Landy, Cal Poly (sofware engineering).
        - Alena Mueller, Cal Poly (UI/UX design).
        
        Maintainer emeritus:
        
        - Ashutosh Bondre, Cal Poly (software engineering).
        - Noah Stapp, Cal Poly (software engineering).
        - Ji Zhang, Cal Poly (software engineering).
        
        This list is provided to help provide context about who we are and how our team functions.
        If you would like to be listed, please submit a pull request with your information.
        
        ### Install
        
        Requires node 4+ and npm 4+
        
        ```bash
        # Clone the repo to your local environment
        git clone https://github.com/jupyterlab/jupyterlab-git.git
        cd jupyterlab-git
        # Install dependencies
        npm install # or yarn
        # Build Typescript source
        npm run build # or yarn build
        # Link your development version of the extension with JupyterLab
        jupyter labextension link .
        # Rebuild Typescript source after making changes
        npm run build # or yarn build
        ```
        
        ```bash
        pip install .
        jupyter serverextension enable --py jupyterlab_git
        ```
        
        To rebuild the package and the JupyterLab app:
        
        ```bash
        npm run build
        jupyter lab build
        ```
        
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
