Is it possible to have a folder hidden only for the developer in git?

0

Sometimes I have been asked to share the code through a git repository.

I have a front-end project, use sass, gulp, etc. All these things are important to me as a developer of the layout.

I have a dev folder that includes all these development configurations and another dist where I generate the final html with its files.

How can I only share the dist folder and that the person who receives the repository can only download that folder? Is it possible in git? Or do I have to create another repo git where I'm inserting the dist separately?

Thanks

    
asked by chalo 25.05.2017 в 20:50
source

1 answer

0

You can use git-submodules or git-subtree .

    
answered by 26.05.2017 в 15:38