From ad949c4f0161fcd1df070262cef7c70bdc1b3d4e Mon Sep 17 00:00:00 2001 From: Greg Nazario Date: Tue, 6 Feb 2024 11:43:00 -0800 Subject: [PATCH] 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. --- community/Move.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/Move.gitignore 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/ -- 2.39.5