Hi, On Wed, Sep 14, 2011 at 09:43:52AM +0530, Siju George wrote: > I am not sure how to do it manually. > Could you please sent me the patched file?
: > >>>> http://gitweb.dragonflybsd.org/dragonfly.git/commit/e7322b09faff75b1298e9bfe444633425d173536 This patch won't apply to your tree, : > >>> blk-build# pwd > >>> /usr/src > >>> blk-build# git describe > >>> v2.11.0-743-g593fea8 because you already have it (search e7322b while running `git log' in your source tree). OTOH, if you're running -RELEASE and the desired commit is not part of your current branch, the easiest way is cherry-picking it (well, as long as you've set up your repository to fetch all branches in the remote repository): $ git fetch $ git cherry-pick e7322b Cheers.