I'm completely new to git, and just tried creating a branch using the command line:
git checkout -b newbranch
In the branch contains a duplicate of my master's files, including a HTML file , some related JavaScript and CSS files etc. My question is, how do I actually "check out/ load" the HTML file (or any other file inside the branch for that matter)? I want to edit the html file inside the branch so it doesn't affect the master branch, but at the same time I need to be able to physically access this file inside the browser.
From what I understand branches in git do not actually exist as child folders in the file system I can just navigate to. Sorry for the newbie question.
Thanks,