Skip to content

Commit

Permalink
Update .gitignore (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
gryumov authored Aug 17, 2024
1 parent c369184 commit 8f6a735
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 40 deletions.
27 changes: 14 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TemplateTools"
uuid = "4b1000a4-b9b7-4319-98e4-c9b821a8e3b0"
version = "2.0.0"
version = "2.1.0"

[deps]
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
Expand Down
27 changes: 14 additions & 13 deletions templates/general/.gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
27 changes: 14 additions & 13 deletions templates/green/.gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml

0 comments on commit 8f6a735

Please sign in to comment.