Download - Paebbels/PicoBlaze-Examples GitHub Wiki

Table of Content:


The PicoBlaze-Examples can be downloaded as a zip-file or cloned with git clone.

Protocol URL
SSH ssh://[email protected]:Paebbels/PicoBlaze-Examples.git
HTTPS https://github.com/Paebbels/PicoBlaze-Examples.git

All Windows command line instructions are intended for Windows PowerShell, if not marked otherwise. So executing the following instructions in Windows Command Prompt (cmd.exe) won't function or result in errors! PowerShell is shipped with Windows since Vista. See the requirements wiki page on where to download or update PowerShell.

Download the Examples as an Archive from GitHub

The latest master branch can be downloaded as a zip-file on the repository's main page.

Downloading the Examples with git clone

The following commands create a PicoBlaze-Examples/ folder and clone the repository onto a local computer's drive. See the Cloning a Repository article on GitHub for more details. The GitHub documentation will use the remote name github instead of git's default name origin in all references. See section Renaming remotes for details.

Linux:
cd <GitRoot>
git clone --recursive [email protected]:Paebbels/PicoBlaze-Examples.git PicoBlaze-Examples
cd PicoBlaze-Examples
git remote rename origin github
Windows (PowerShell):
cd <GitRoot>
mkdir lib
git clone --recursive [email protected]:Paebbels/PicoBlaze-Examples.git PicoBlaze-Examples
cd PicoBlaze-Examples
git remote rename origin github

Note: The option --recursive performs a recursive clone operation for all integrated git submodules. An additional git submodule init and git submodule update is not needed anymore.

See also

⚠️ **GitHub.com Fallback** ⚠️