Use Terminal for Git integration
tip
Automate Terminal commands using init.shTo automate running a set of Terminal commands on each notebook start, edit the init.sh shell script. This allows you to do the following:
configure access to your privately owned repositories
configure the usage of your personal tokens
install non-Python dependencies
mount file directories
The changes you make by editing the init.sh script are applied before the pip or conda package manage executes the base environment setup.
To specify a username or email to access/push files to a repository, add the following configurations to your init.sh script:
git config --global user.email "email@example.com" git config --global user.name "your_name"
Thanks for your feedback!
Was this page helpful?