File: updating-experimental.txt

package info (click to toggle)
agda-stdlib 2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,196 kB
  • sloc: haskell: 375; makefile: 32; sh: 28; lisp: 1
file content (14 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
The `experimental` branch contains changes that are required for
yet unreleased versions of Agda. These are kept separate from
`master` so that the standard library releases can occur independently
from Agda releases.

To update `experimental` to the current version of `master` run the
following:
  ```
  git checkout master
  git pull
  git checkout experimental
  git merge master
  git push
  ```