diff options
author | Greg Nazario <greg@gnazar.io> | 2024-02-06 11:43:00 -0800 |
---|---|---|
committer | Greg Nazario <greg@gnazar.io> | 2024-10-02 14:46:31 -0700 |
commit | ad949c4f0161fcd1df070262cef7c70bdc1b3d4e (patch) | |
tree | c13820adf7f0d4ab29fda1643de8fa3caa521470 | |
parent | 3674ae092f8055c29ffac2066dce1ccd7f798891 (diff) | |
download | gitignore-ad949c4f0161fcd1df070262cef7c70bdc1b3d4e.tar.gz gitignore-ad949c4f0161fcd1df070262cef7c70bdc1b3d4e.zip |
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.
-rw-r--r-- | community/Move.gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/community/Move.gitignore b/community/Move.gitignore new file mode 100644 index 00000000..b7d406e7 --- /dev/null +++ b/community/Move.gitignore @@ -0,0 +1,6 @@ +# Generated by Move +# will have compiled files +build/ + +# Remove possibly saving credentials to the git repository +.aptos/ |