Do personal folder names get uploaded to github? #31
-
My Mac and my main folder name (in terminal) are personal. When I create a repository on github do those names end up in the path to files or in the abi or anything? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Yes, you can easily check using
and you will see infact that you will have some matches in some files (eg in the json file with the abi, the bytecode and so on) However, in the
and as you can see, the you should add here all the files/folders that you don't want to share, and if you are following the tutorial 100% and so you are using VSCode, you probably want to exclude |
Beta Was this translation helpful? Give feedback.
Yes, you can easily check using
and you will see infact that you will have some matches in some files (eg in the json file with the abi, the bytecode and so on)
However, in the
.gitignore
file autogenerated by brownie, you can find this content:and as you can see, the
build
folder is ignored, and so if you do something likegit add -A
those files won't be saved in the Github repo (and won't be tracked by git)you should add here all the files/folders that you don't want to share, and if you are following the tutorial 100% and so you are using VSCode, you probably want to exclude
.vscode
also (that…