I’m using Aptana and Git. When I go to create a new branch, the following dialog box shows up.

I was wondering what that ‘track’ checkbox does, and when it’s most appropriate to check it.
I understand the concept of tracking in git, but mostly with files. I don’t seem to understand how it applies to new branches being created?
In this case,
trackrefers to git-checkout’s and git-branch’s--trackoption.When a local branch is started off a remote-tracking branch, git sets up the branch so that
git pullwill appropriately merge from the remote-tracking branch.From
man git-branch: