custom-git
v1.8.2
Published
A JupyterLab extension for version control using git
Downloads
4
Maintainers
Readme
jupyterlab-git
A JupyterLab extension for version control using git
Prerequisites
- JupyterLab
Usage
- Open the git extension from the Git tab on the left panel
Install
To install perform the following steps:
pip install --upgrade jupyterlab-git
jupyter lab build
Development
Contributing
If you would like to contribute to the project, please read our contributor documentation.
JupyterLab follows the official Jupyter Code of Conduct.
Team
The Jupyter Git extension is part of Project Jupyter 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:
- Brian Granger, Cal Poly (co-creator, strategy, vision, management, UI/UX design, architecture).
- Saul Shanabrook, Quansight(software engineering)
- Jaipreet Singh, AWS (software engineering, UI/UX design, management)
- Frederic Collonval, Safran Group (software engineering)
A lot of awesome people have contributed to this repo - See the contributors tab for more details!
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+
# Clone the repo to your local environment
git clone https://github.com/jupyterlab/jupyterlab-git.git
cd jupyterlab-git
# Install the server extension in development mode
pip install -e .
jupyter serverextension enable --py jupyterlab_git
# Install Javascript dependencies
jlpm install
# Build Typescript source
jlpm run build
# Link your development version of the extension with JupyterLab
jupyter labextension link .
To rebuild the package after a change and the JupyterLab app:
jlpm run build
jupyter lab build