Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
luizaandrade committed Dec 16, 2020
1 parent d5a2106 commit b5597f5
Showing 1 changed file with 55 additions and 29 deletions.
84 changes: 55 additions & 29 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,55 @@
*Data/*
*.do
*.Rhistory
*.xlsx
*.log
*.out
*.snm
*.nav
*.toc
*.md
*.vrb
*.aux
*.png
*.DS_Store
*.csv
*.dbf
*.cpg
*.prj
*.shp
*.pdf
*.RData
*.rdx
*.rdb

Presentations/01-intro-to-R-Part-I_cache/
Presentations/01-intro-to-R-Part-II_cache/
Presentations/02-data-processing_cache/
Presentations/04-data-visualizaation_cache/
Presentations/04-data-visualization_cache/
########################################################################
#
# Based on DIME .gitignore template. Follow the instructions in the URL
# below to set up this template in your own repository
# https://github.com/worldbank/dime-github-trainings/tree/master/GitHub-resources/DIME-GitHub-Templates
#
# Note that if you are using GitKraken, you need to use version 5.x or more
# recent for this template to work properly
#
########################################################################

#######################
# Start by ignoring everything, and below we are explicitly saying
# what to not ignore
*

#######################
# List of files with GitHub functionality anywhere in the repo
# that we do not want to ignore

# These files include GitHub settings
!.gitignore
!.gitattributes

# Keep markdown files used for documentation on GitHub
!README.md
!CONTRIBUTING.md
!LICENSE*

#######################
# For performance reasons, if a folder is already ignored, then
# GitHub does not check the content for that folder for matches
# with additional rules. The line below includes folder in the
# top folder (but not their content), so that anything matching
# the rules below will still not be ignored.
!*/

#######################
# The following file types are code that should always be
# included no matter where in the repository folder they are
# located unless you explicitly ignore that folder

# R
!/**/*.R
!/**/*.Rmd
!/**/*.Rproj

# CSS and other libraries for presentations
!/**/*.css
!/**/*.js
!Presentations/img/**
!Presentations/libs/**/**

# Markdown
!/**/*.md

0 comments on commit b5597f5

Please sign in to comment.