Compare commits

..

26 Commits

Author SHA1 Message Date
@Eternal-Grace
c3a26c76ad
Merge branch 'github:main' into main 2024-10-26 14:00:31 +02:00
Devin Dooley
76739a38b5
Merge pull request #4493 from MattKotsenas/patch-1
Exclude Directory.Build.rsp from VisualStudio.gitignore template
2024-10-17 14:03:32 -07:00
Devin Dooley
53cf297127
Merge pull request #4408 from gregnazario/add-move
Adds Move language
2024-10-15 09:55:18 -07:00
Daniel Johnson
274c32303f
Merge pull request #4388 from loozhengyuan/feat/update-kicad-temp-files
feat: add KiCad lock/autosave files
2024-10-04 12:44:36 -07:00
Greg Nazario
ad949c4f01
Adds Move language
Move language is used for MoveVM based blockchains as the language
native to them.  The compiler provides a folder build/ that holds
the build artifacts.

The .aptos/ folder is ignored so people do not upload their private
keys to a git repository.
2024-10-02 14:46:31 -07:00
Devin Dooley
5445a27025
Merge pull request #4503 from bschaatsbergen/f/add-zig-ignore
chore: change `zig-cache/` to `.zig-cache/`
2024-09-09 14:28:50 -07:00
Bruno Schaatsbergen
aa8a4bee25
Merge branch 'main' into f/add-zig-ignore 2024-09-09 23:26:06 +02:00
Devin Dooley
ec0f03f241
Merge pull request #3975 from svc-user/main
Create Zig.gitignore
2024-09-09 14:06:54 -07:00
Bruno Schaatsbergen
4b771ac75a
feat: add Zig.gitignore
Signed-off-by: Bruno Schaatsbergen <git@bschaatsbergen.com>
2024-09-07 14:21:37 +02:00
Devin Dooley
33243d9491
Merge pull request #4485 from SunnyCloudYang/main
Create Hexo.gitignore
2024-08-31 16:05:20 -07:00
Yunyang
aa39d37629 Merge branch 'main' of https://github.com/SunnyCloudYang/gitignore 2024-08-31 15:27:59 +08:00
Yunyang
fc32973012 docs: update Hexo.gitignore 2024-08-31 15:23:56 +08:00
GoodNullName
ec4bac82f4
Merge branch 'github:main' into main 2024-08-31 14:10:26 +08:00
Yunyang
e624f8594a fix: update Hexo.gitignore 2024-08-31 13:33:36 +08:00
Daniel Johnson
c22fd083e7
Merge pull request #4445 from costaparas/feature/update-terraform
Ignore terragrunt cache
2024-08-30 13:14:51 -07:00
Daniel Johnson
ec300b949b
Merge pull request #4449 from brettcannon/rescript
Create ReScript.gitignore
2024-08-30 13:13:22 -07:00
Matt Kotsenas
71eddf97b6
Update VisualStudio.gitignore
`Directory.Build.rsp` is a [documented file][1] that allows setting default arguments to command line builds. However, our .gitignore template ignores _all_ `*.rsp` files. which causes confusion:

1. Devs write an .rsp file and if they aren't being attentive forget to commit it
2. Adding it to git requires `git add --force`, which some devs mistake for a destructive or not-recommended action

Thus, explicitly allow the `Directory.Build.rsp` file.

[1]: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files?view=vs-2022#directorybuildrsp
2024-08-14 17:27:36 -07:00
Yunyang
3a3cf7fad4 Remove some global ignores 2024-07-17 16:53:33 +08:00
Yunyang
038a66091d Update Hexo.gitignore 2024-07-17 16:37:58 +08:00
Yunyang
14be7ece29 Add Hexo.gitignore 2024-07-17 16:34:18 +08:00
Brett Cannon
a30c2940f1
Update ReScript.gitignore 2024-06-12 11:56:01 -07:00
Costa Paraskevopoulos
403cf39f22 Migrate terragrunt ignore to new template as suggested 2024-05-31 19:23:32 +10:00
Brett Cannon
dae1884ac1
Create ReScript.gitignore 2024-05-25 13:50:47 -07:00
Costa Paraskevopoulos
1ab38f03c9 Ignore terragrunt cache
This excludes the common/default location from source control

Docs: https://terragrunt.gruntwork.io/docs/features/caching/
2024-05-13 21:38:08 +10:00
Loo Zheng Yuan
0bfdc4464c
feat: add KiCad lock/autosave files 2023-12-27 22:59:39 +08:00
Bick Doner
abbcca282f
Create Zig.gitignore 2022-02-16 13:36:16 +01:00
7 changed files with 32 additions and 0 deletions

View File

@ -16,6 +16,8 @@ _autosave-*
*-save.pro
*-save.kicad_pcb
fp-info-cache
~*.lck
\#auto_saved_files#
# Netlist files (exported from Eeschema)
*.net

3
ReScript.gitignore Normal file
View File

@ -0,0 +1,3 @@
/node_modules/
/lib/
.bsb.lock

View File

@ -82,6 +82,8 @@ StyleCopReport.xml
*.pgc
*.pgd
*.rsp
# but not Directory.Build.rsp, as it configures directory-level build defaults
!Directory.Build.rsp
*.sbr
*.tlb
*.tli

2
Zig.gitignore Normal file
View File

@ -0,0 +1,2 @@
.zig-cache/
zig-out/

14
community/Hexo.gitignore Normal file
View File

@ -0,0 +1,14 @@
# gitignore template for Hexo sites
# website: https://hexo.io/
# Recommended: Node.gitignore
# Ignore generated directory
public/
# Ignore temp files
tmp/
.tmp*
# additional files
db.json
.deploy*/

6
community/Move.gitignore Normal file
View File

@ -0,0 +1,6 @@
# Generated by Move
# will have compiled files
build/
# Remove possibly saving credentials to the git repository
.aptos/

View File

@ -0,0 +1,3 @@
# Ignore the default terragrunt cache directory
# https://terragrunt.gruntwork.io/docs/features/caching/
.terragrunt-cache