Clone this repo:
  1. a83458b README: warning about obsoleted master branch by Kir Kolyshkin · 1 year, 7 months ago master v1.5.3
  2. 466b39d prepare 1.5.1, retract 1.5.0 by Nathan Youngman · 2 years, 1 month ago v1.5.1
  3. b98ede5 Revert "Add AddRaw to not follow symlinks + Fix link folloing on Windows (#289)" by Nathan Youngman · 2 years, 1 month ago
  4. dfdb645 revise pull request template by Nathan Youngman · 2 years, 1 month ago
  5. 08848a0 v1.5.0 preparation (#380) by Oliver Bristow · 2 years, 1 month ago v1.5.0

WARNING

If you are reading this, you use master branch of this repository, which is wrong.

This branch

  • should not be used;
  • is not maintained;
  • is not supported;
  • will be removed soon.

You should switch to using the default branch instead.

Using git

Here's how to switch your existing local copy of this repository from master to main (assuming the remote name is origin):

git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

In addition to the above, if you want to remove the leftover origin/master remote branch (NOTE this also removes all other remote branches that no longer exist in origin):

git remote prune origin

Background

The master branch was renamed to main, causing an issue with Yocto/OpenEmbedded's meta-virtualization layer, which explicitly refers to master branch of this repository (see #426).

This temporary branch is created to alleviate the Yocto/OE issue.