Today I downloaded a branch from the remote repository, and when I went to see information about the branches, I realized that the branch track was not created in local with the branch of the remote repository, and the information showed like this:
$ git branch -vv
master 58951259 [origin/master] commit1
develop 12345687 [origin/develop] commit2
features/feature-25 12345678 commit3
The tracking (track) of the branch has not been created. I wanted to have the follow-up done (I thought it was done only by default), since later you can see the commits that go ahead (ahead) and behind (behind) the remote branch.