Skip to content
Patrick Lehmann edited this page Sep 8, 2015 · 4 revisions

Table of Content:


The PoC-Examples Collection can be downloaded as an archive or cloned with git clone.

Protocol    URL
----------------------------------
SSH         ssh://git@github.com:VLSI-EDA/PoC.git
HTTPS       https://github.com/VLSI-EDA/PoC-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! 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 PoC-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.

Linux:
cd <GitRoot>
git clone --recursive git@github.com:VLSI-EDA/PoC-Examples.git PoC-Examples
cd PoC-Examples
git remote rename origin github
Windows (PowerShell):
cd <GitRoot>
git clone --recursive git@github.com:VLSI-EDA/PoC-Examples.git PoC-Examples
cd PoC-Examples
git remote rename origin github

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

Navigation

Hardware:

Software:

Examples:

  • io
  • net
    • mac
      • Loopback
    • ipv4
      • Loopback
    • ipv6
      • Loopback
    • udp
      • Loopback
      • Echo

Links:

Clone this wiki locally