Is there any git command that allow me to "clone" from a git repository but only the working directory of specified branch is cloned without .git folder that has all logs and version history?
There are few reasons to work with multiple working directory on single .git repo. Reason 1: I have few branch in a git, I want to work and see these branch at the same time without git checkout that may override files in branches. Reason 2: I want to make a software release of particular branch but don't want to disturb the branch that I am working.