Tirer un seul commit serait un choix à faire et réécrirait l'ID de commit (et vous marquerait comme le committer tout en conservant l'auteur). Le processus est assez simple, cependant:
git fetch git://github.com/user/project.git
git cherry-pick <SHA-COMMIT-ID>
Vous obtenez le SHA à partir du journal du référentiel, par exemple:
git log --oneline
b019cc0 Check whether we have <linux/compiler.h>.
0920898 Include <linux/compiler.h> before including <linux/usbdevice_fs.h>.
cbf0ba1 Add DLT_DBUS, for raw D-Bus messages.
77ed5cd Libnl 2.x returns its own error codes, not errnos; handle that.
Avec git cherry-pick 0920898
vous apportez le commit respectif à votre branche actuelle.