Reputation: 2109
I am new to GIT. I use EGIT with eclipse.
I have a question about branches where I see two sections "Local" and "Remote Tracking". If I have to work on one of the branches, I think there are two ways I can accomplish it.
a) Check out origin/featureBranch under remote tracking and work on it.
b) Right click under local and create a local branch and point to ref/remote/featureBranch and start working on it?
Are there any difference between these two approaches? which one is preferred?
Upvotes: 4
Views: 1712
Reputation: 1323753
b) would be best.
a) would create a DETACHED HEAD, which would allow you to work on an "anonymous" branch, but would not allow you to push your work.
(See also "Git Tip of the Week: Detached Heads" and "detached head explained" for more on detached head)
For EGit, see "Git Lesson: Be mindful of a detached head":
Upvotes: 7