-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(sync): 🔨 created local '.gitignore' from remote '.gitignore'
- Loading branch information
1 parent
679f021
commit 764158a
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This file contains information that Git uses to stop specific files from | ||
# being tracked by Git and being uploaded to GitHub. For example, MacOS users | ||
# always have this hidden file called `.DS_Store` in each of their folders. | ||
# We don't need that file kept on GitHub and shared with everyone. So in this | ||
# file, we tell Git to not track/watch that file. | ||
|
||
# Development files and folders | ||
_ignore | ||
bin/ | ||
dev/ | ||
|
||
# Temporary files | ||
*.tmp | ||
|
||
# MacOS | ||
.DS_Store | ||
|
||
# Quarto | ||
/.quarto/ | ||
|
||
# Website generation | ||
*_files | ||
_site | ||
_book | ||
public | ||
site | ||
|
||
# R files | ||
.Rproj.user | ||
.Rhistory | ||
.Rdata | ||
.httr-oauth |