
When set to true, this setting guards against overwriting and/or losing uncommitted changes. disableBranchWithChanges: disable all branch operations, such as creating a new branch or switching to a different branch, when there are changed/staged files.commitAndPush: Whether to trigger or not a push for each commit default is false.If set to true, when fetching and integrating changes from a remote repository, a conflicting merge is canceled and the working tree left untouched. cancelPullMergeConflict: cancel pulling changes from a remote repository if there exists a merge conflict.Setting this to false allows for actions to trigger multiple concurrent Git actions. Unless running a slow network, UI suspension should not interfere with standard workflows. Setting this to true helps mitigate potential race conditions leading to data loss, conflicts, and a broken Git history. blockWhileCommandExecutes: suspend JupyterLab user interaction until Git commands (e.g., commit, pull, reset, revert) finish executing.Once installed, extension behavior can be modified via the following settings which can be set in JupyterLab's advanced settings editor: You should now be able to pull and push committed changes to and from your remote repository using the respective buttons on the top of the extension's panel. Tell your local Git repository to connect to remote via ssh.Optionally, if you have more than one key managed by your ssh agent: Create a config file for the ssh-agent.Register the public part of it to your Git server:.Here are the steps to follow to set up SSH authentication (skip any that is already accomplished for your project): This is a new feature since v0.37.0 SSH protocol You can set a longer cache timeout see Server Settings. To use the caching, you will need toĬheck the option Save my login temporarily in the dialog asking your credentials. The extension can cache temporarily (by default for an hour) credentials. In order to connect to a remote host, it is recommended to use SSH. It will automatically set up a credential manager.
JUPYTERLAB GITHUB INSTALL
But not for other SSH connections.įor Windows users, it is recommended to install git for windows. This extension tries to handle credentials for HTTP(S) connections (if you don't have set up a credential manager). If you are seeing errors similar to 500 POST /git/ on the console which is running the JupyterLab server, you probably need to set up a credentials store for your local Git repository. Jupyter labextension uninstall Settings Authentication to remote repository hosts
