Linux-next: diferenças entre revisões

Fonte: WikiPeida
Saltar para a navegação Saltar para a pesquisa
(Criou a página com "== Setup == <console> ##g##$##!g## git clone https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git ##g##$##!g## cd linux ##g##$##!g## git remote add linux-next...")
 
 
(Há 2 edições intermédias do mesmo utilizador que não estão a ser apresentadas)
Linha 8: Linha 8:
##g##$##!g## git fetch --tags linux-next
##g##$##!g## git fetch --tags linux-next
</console>
</console>


== Update ==
== Update ==
Linha 15: Linha 14:
##g##$##!g## git checkout master
##g##$##!g## git checkout master
##g##$##!g## git remote update
##g##$##!g## git remote update
##g##$##!g## git tag -l "next-*" | tail
##g##$##!g## git checkout next-20181015
##g##$##!g## git checkout next-20181015
</console>
</console>
Linha 23: Linha 25:
##g##$##!g## git reset --hard
##g##$##!g## git reset --hard
</console>
</console>
== Ligações externas ==
* [https://www.kernel.org/doc/man-pages/linux-next.html Working with linux-next]


[[Category:Linux]]
[[Category:Linux]]

Edição atual desde as 10h27min de 22 de outubro de 2018

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

Ligações externas