We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Duet code is contained in duet kernel.
duet
To merge the master branch with the Linus' repository, go through the following steps:
Check whether a remote point to the upstream repository exists:
$ git remote -v
If it does, move to Step 3.
Configure a remote point to the upstream repository:
$ git remote add upstream https://github.com/torvalds/linux.git
Sync the master branch:
$ git fetch upstream
$ git checkout master
$ git merge upstream/master