Updating the Tree and Tracking Patches

Hello again everybody,

Now we need to learn how to update our git tree (and of course, all of its branches).

issuing:

$ git-pull

In the master branch will pull and merge every single new commit locally. To update our local branches we just need to issue:

$ git-pull  master

This will get the updates in the master branch and merge them the local_branch.

Now that we have an updated tree, let's check if our patches have been applied, we just issue:

$ git-cherry master 

If is there any un-pushed commit, it will print the commit id.

That's all for today. Next post we're gonna play a bit with git-config before keep going with patch management.

See y'all

VN:F [1.9.0_1079]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.0_1079]
Rating: 0 (from 0 votes)

Leave a Reply