I have a gitlab server and git command on my computer.
I can create a local branch with:
git branch my_local_branch
I can push this branch on my server with:
git push origin my_local_branch
I can fetch other branches which are on the server with:
git pull another_branch
And i can push it after making changes on files.
So i do not understand what is git track command.
What can i do more with track feature that i cannot do with pull/push?