Is there a way to get the files located on a particular branch?
I can get the contents of the master branch using the 'src', however, I couldnt find a way to get the contents of the a branch which is not master.
Thanks in Advance!
Hi Akash,
The git ls-tree command can help with this.Here is an example of how you can run it to list all the files in the mybranch branch in a recursive way:
git ls-tree mybranch -r --name-only
CaterinaP.s. I know it's been a while since you posted this but I hope this might help you and others who might come across this in the future.
It looks like you're new here. Sign in or register to get started.