diff options
author | Sangeeth Sudheer <git@sangeeth.dev> | 2024-10-28 13:59:39 +0530 |
---|---|---|
committer | Sangeeth Sudheer <git@sangeeth.dev> | 2024-10-28 13:59:39 +0530 |
commit | cc912eab6b0dc1920884884fb669e12e36bbe321 (patch) | |
tree | 82e0df61f8d15ac62d269f6e0b353c1dc0797e39 /.gitignore | |
parent | 08acb542be7de75b799a948caa5fd3ceaf8d2c0f (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-- | .gitignore | 111 |
1 files changed, 110 insertions, 1 deletions
@@ -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 |