summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorSangeeth Sudheer <git@sangeeth.dev>2024-10-28 13:59:39 +0530
committerSangeeth Sudheer <git@sangeeth.dev>2024-10-28 13:59:39 +0530
commitcc912eab6b0dc1920884884fb669e12e36bbe321 (patch)
tree82e0df61f8d15ac62d269f6e0b353c1dc0797e39 /.gitignore
parent08acb542be7de75b799a948caa5fd3ceaf8d2c0f (diff)
Update .gitignore
Used https://www.toptal.com/developers/gitignore to update the .gitignore file with go, hugo, macos, linux and windows specific entries.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore111
1 files changed, 110 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 496ee2c..6e26b2b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,110 @@
-.DS_Store \ No newline at end of file
+### Go ###
+# If you prefer the allow list template instead of the deny list, see community template:
+# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
+#
+# Binaries for programs and plugins
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+
+# Test binary, built with `go test -c`
+*.test
+
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+
+# Dependency directories (remove the comment below to include it)
+# vendor/
+
+# Go workspace file
+go.work
+
+### Hugo ###
+# Generated files by hugo
+/public/
+/resources/_gen/
+/assets/jsconfig.json
+hugo_stats.json
+
+# Executable may be added to repository
+hugo.exe
+hugo.darwin
+hugo.linux
+
+# Temporary lock file while building
+/.hugo_build.lock
+
+### Linux ###
+*~
+
+# temporary files which can be created if a process still has a handle open of a deleted file
+.fuse_hidden*
+
+# KDE directory preferences
+.directory
+
+# Linux trash folder which might appear on any partition or disk
+.Trash-*
+
+# .nfs files are created when an open file is removed but is still being accessed
+.nfs*
+
+### macOS ###
+# General
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Icon must end with two \r
+Icon
+
+# Thumbnails
+._*
+
+# Files that might appear in the root of a volume
+.DocumentRevisions-V100
+.fseventsd
+.Spotlight-V100
+.TemporaryItems
+.Trashes
+.VolumeIcon.icns
+.com.apple.timemachine.donotpresent
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
+
+### macOS Patch ###
+# iCloud generated files
+*.icloud
+
+### Windows ###
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk