Linux-next: diferenças entre revisões
Ir para a navegação
Ir para a procura
Sem resumo de edição |
|||
| Linha 1: | Linha 1: | ||
== Setup == | == Setup == | ||
< | <syntaxhighlight lang="bash"> | ||
git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | |||
cd linux | |||
git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git | |||
git fetch linux-next | |||
git fetch --tags linux-next | |||
</ | </syntaxhighlight> | ||
== Update == | == Update == | ||
< | <syntaxhighlight lang="bash"> | ||
git checkout master | |||
git remote update | |||
git tag -l "next-*" | tail | |||
git checkout next-20181015 | |||
</syntaxhighlight> | |||
</ | |||
== Fix Drama == | == Fix Drama == | ||
< | <syntaxhighlight lang="bash"> | ||
git reset --hard | |||
</ | </syntaxhighlight> | ||
== Ligações externas == | == Ligações externas == | ||
Edição atual desde as 21h18min de 7 de março de 2026
Setup
git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
cd linux
git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git fetch linux-next
git fetch --tags linux-next
Update
git checkout master
git remote update
git tag -l "next-*" | tail
git checkout next-20181015
Fix Drama
git reset --hard