riscvarchive / risc-v-getting-started-guide

The official RISC-V getting started guide
https://risc-v-getting-started-guide.readthedocs.io/en/latest/
Creative Commons Attribution 4.0 International
198 stars 56 forks source link

Checkout with a Git tag instead of a branch #38

Open d0iasm opened 3 years ago

d0iasm commented 3 years ago

https://github.com/torvalds/linux has the v5.4 tag but doesn't have the v5.4 branch.

So the command for git checkout should be:

$ git checkout tags/v5.4 -b v5.4

Thanks!