Git cherry-pick from net-next repository



# Cloning our fork

$ git clone git clone git@github.com:zhuyj/zhuyj.git


# Adding (as "net-next")

$ git remote add net-next https://kernel.googlesource.com/pub/scm/linux/kernel/git/davem/net-next


# Fetch their branches

$ git fetch net-next


# List their commits

$ git log net-next/master


# Cherry-pick the commit we need

$ git cherry-pick 442866f


# Pushing to our master

$ git push origin master

猜你喜欢

转载自blog.csdn.net/mounter625/article/details/78551593