Git (1) 썸네일형 리스트형 [gitignore] How to ignore files and directory in repository Step 1 : Create .gitignore To create a .gitignore file, go to the root of our local Git, and create it : $ touch .gitignore Step 2 : Append extensions or directory name to .gitignore Now open the file using a text editor. We are just going to add using wild expression. # ignore ALL .log files *.log # ignore All directory named ipynb_checkpoints .ipynb_checkpoints */.ipynb_checkpoints/* Step 3 : .. 이전 1 다음