My .gitignore
is not visible in Jupyter Lab Files tab. Is there any way to show hidden files there?
This is still an open issue in JupyterLab:
https://github.com/jupyterlab/jupyterlab/issues/2049
As a temporary workaround, you can start your jupyter lab via the below command (as mentioned in the above URL) to edit hidden files:
jupyter lab --ContentsManager.allow_hidden=True
JupyterLab currently lacks the ability to toggle hidden files in the browser.
You can simply rename the file in a terminal session to view/edit .gitignore as needed:
1) Create gitignore as TEXT file:
2) Rename file to gitignore (no preceding dot) in JupyterLab:
You can now view/edit in JupyterLab as needed.
3) Prior to pushing to GitHub, add the preceding dot by running the following in terminal:
mv gitignore .gitignore
Whenever you need to view/edit the file, change it back to visible:
mv .gitignore gitignore
...and edit the file using JupyterLab.
If you ever need to see the file listed, run the following in terminal:
ls -a
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With