the-magnificents / 04-02-2021-Carpentry-for-HGIS

A carpentry workshop focused on Digital Humanities audience that works with Geospatial Data.
Other
2 stars 3 forks source link

04-02-2021-Carpentry-for-HGIS/03_Day_3_Git/reads/00_README #79

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

READS DAY 3 — Python essentials for GIS learners

https://the-magnificents.github.io/04-02-2021-Carpentry-for-HGIS/03_Day_3_Git/reads/00_README.html

jurra commented 3 years ago

There is something we want emphasize about git. Some files and folders can be ignored, for instance _build folders or .ipynb_checkpoints/

You can open .gitignore file using nano, for instance, or any other text editor, from notepad to visualstudio code. Inside gitignore you can add folder and files. For example:

.ipynb_checkpoints/

you also have to make sure to stage the changes in .gitignore and commit it, then git should stop tracking .ipynb_checkpoints/

For more information on ignore changes read this.