I can't find remote branches on the subfolder of my cloned repository.
Context : I'm building a website using Ruby on Rails. So, I have the default blog folder (containing files generated by Ruby on Rails) inside folders which act as dividers (for example to separate backend and frontend). I cloned the project folder (root) and created a new branch there. The structure of the folders is project/code/backend/blog.
The codes that I used ...
git clone https://github.com/username/project
cd project
git branch features
git branch -av
=> showed the existence of the features branch.cd code/backend/blog
git branch -av
=> showed nothing.