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-pullmaster
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