Skip to content

Do personal folder names get uploaded to github? #31

Discussion options

You must be logged in to vote

Yes, you can easily check using

grep -iRl "folder_name" ./

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:

__pycache__
.history
.hypothesis/
build/
reports/
.env
.vscode

and as you can see, the build folder is ignored, and so if you do something like git 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…

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@oceanKingEth
Comment options

@AlbertoSinigaglia
Comment options

@PatrickAlphaC
Comment options

@AlbertoSinigaglia
Comment options

@PatrickAlphaC
Comment options

Answer selected by PatrickAlphaC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants