forked from ballerina-platform/ballerina-lang
-
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.
Update .gitignore template with comments
- Loading branch information
1 parent
8eed597
commit 3bd6077
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
14 changes: 11 additions & 3 deletions
14
cli/ballerina-cli/src/main/resources/new_cmd_defaults/gitignore
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
target | ||
generated | ||
Config.toml | ||
# Ballerina generates this directory during the compilation of a package. | ||
# It contains compiler-generated artifacts and the final executable if this is an application package. | ||
target/ | ||
|
||
# Ballerina maintains the compiler-generated source code here. | ||
# Remove this if you want to commit generated sources. | ||
generated/ | ||
|
||
# Contains configuration values used during development time. | ||
# See https://ballerina.io/learn/provide-values-to-configurable-variables/ for more details. | ||
Config.toml |