Re: Linux 5.8-rc6

From: Linus Torvalds
Date: Tue Jul 21 2020 - 11:14:35 EST


On Tue, Jul 21, 2020 at 1:17 AM Sedat Dilek <sedat.dilek@xxxxxxxxx> wrote:
>
> You happen to know if I can configure in my ~/.gitconfig to pull
> linux-git stuff from two repositories - check first git.kernel.org
> then GitHub.

Just script it. IOW, do

git pull ..kernel.org..
git pull ...github..

and if you _want_ to, you can just create an alias for that in your
.gitconfig so that you can do it with one "git update" command or
whatever.

But normally, they are both updated at pretty much the same time.

Linus