The output of git status command
$ git status
On branch master is following:
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
Considering this is a local git status check, and I have master branch checked out (and it is the only branch available), then, in the above message - "Your branch" - I believe that it means my local master branch?
And when it says "is up-to-date with 'origin/master'", what does origin/master mean here? I am already on the local master which is origin/master isn't it? Or does it mean Master branch on the server (require network connectivity to server/automatic fetch)?