- Notifications
You must be signed in to change notification settings - Fork14
JupyterLab extension to create GitHub commits & pull requests
License
ReviewNB/jupyterlab-gitplus
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A JupyterLab plugin for version control of Jupyter notebooks. It can,
- Push GitHub commits from JupyterLab
- Create GitHub pull request from JupyterLab
- JupyterLab 2.x or 3.x
- Git (running
giton cmdline or terminal should work)
pip install --upgrade jupyterlab_gitplusjupyter labextension install @reviewnb/jupyterlab_gitplusjupyter serverextensionenable --py jupyterlab_gitplusTokens are required to make API calls to GitHub to push commits and create pull requests.
- Head overdeveloper settings on GitHub. Click "Generate New Token".
- Select
reposcope. Click "Generate Token". Copy the generated token. - If
~/.jupyter/jupyter_notebook_config.pydoes not exist then create one by runningjupyter notebook --generate-config - Open you Jupyter config file
~/.jupyter/jupyter_notebook_config.py& paste the token as shown below
c.GitPlus.github_token ='<your-github-access-token>'After installation, start JupyterLab normally & you should see "Git-Plus" as a new menu item at the top.
If your organization has a self-hosted ReviewNB instance running at e.g.https://reviewnb.yourdomain.com. You can configureGitPlus to link users to PRs/commits at this URL instead of the default one as follows:
c.GitPlus.self_hosted_reviewnb_endpoint="https://reviewnb.yourdomain.com/"
Where is pull request (PR) opened in case of forked repositories?
If your repository is forked from another repository (parent) then PR will be created on parent repository.
Which is thebase branch used in a pull request?
base branch in a PR is a branch against which your changes are compared and ultimately merged. We use repository's default branch (usually calledmaster) asbase branch of PR. We use parent repository's default branch asbase in case of forked repo.
Which is thehead branch used in a pull request?
head branch in a PR is a branch which contains the latest changes you've made. We create a new branch (e.g.gitplus-xyz123) ashead branch. It only contains changes from the files you wish to include in the PR.
How can I edit a pull request opened with GitPlus?
You can head over to GitHub and edit the PR metadata to your liking. For pushing additional file changes to the same PR,
- Copy the branch name from GitHub UI (e.g.
gitplus-xyz123) - Checkout that branch locally
- Make the file changes you want
- Use push commit functionality from GitPlus to push new changes
Is GitPlus tied to ReviewNB in any way?
No. GitPlus is it's own open source project. The only connection with ReviewNB is that at the end of PR/Commit creation, GitPlus shows ReviewNB URL along with GitHub URL. You can safely ignore these URLs if you don't want to use ReviewNB.
It's is useful to seevisual notebook diffs on ReviewNB instead of hard to readJSON diffs on GitHub.ReviewNB also facilitates discussion on notebooks cells.
What if I don't have a ReviewNB account?
No problem, everything in GitPlus will still work fine. Only the ReviewNB URLs won't work for you.
Can we use GitPlus with Gitlab/BitBucket or any other platforms?
No, currently we only support repositories on GitHub.
Our aim is to make notebooks a first class entity in Data science & ML teams. We can achieve this by making notebooks play well with existing tools & processes instead of building expensive proprietary platforms. Other projects in this direction are,
- ReviewNB - Code review tool for Jupyter notebooks
- treon - Easy to use test framework for Jupyter notebooks
In future GitPlus will be able to,
- Pull changes from GitHub
- Switch/create branches locally
- Resolve notebook merge conflicts (without messing with underlying JSON)
Thejlpm command is JupyterLab's pinned version ofyarn that is installed with JupyterLab. You may useyarn ornpm in lieu ofjlpm below.
# Clone the repo to your local environment & install dependencies# via https://jupyterlab.readthedocs.io/en/stable/extension/extension_tutorial.html#build-and-install-the-extension-for-developmentpip install -ve.# Link your development version of the extension with JupyterLabjupyter labextension link.# Run jupyterlab in watch mode in one terminal tabjupyter lab --watch# Watch the GitPlus source directory in another terminal tabjlpm watch# If you make any changes to server side extension (.py files) then reinstall it from sourcepip install.
If you see any problem, open an issue or send a pull request. You can write tosupport@reviewnb.com for any questions.
About
JupyterLab extension to create GitHub commits & pull requests
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors3
Uh oh!
There was an error while loading.Please reload this page.