Skip to content

Branches then

Gunter Liszewski (s70-11) edited this page Sep 25, 2018 · 1 revision

TECO work review

Current branches of development

One indicator of the current state of work is the following list of branches and the output of ”’git describe”’. Below is the command that gathers relevant information from each branch.

for x in $( git branch | sed s,^[*] *,, );
do
 echo -e "$( git checkout $x |& sed -e s,^S.*ch ,, )\n  $( git describe )\n";
done

And here is the output from the above shell script.

'a104'
Your branch is up to date with 'origin/a104'.
  release/v0.0-107-g7e29750

'a107'
Your branch is up to date with 'origin/a107'.
  release/v0.0-110-g8c64e0a

'abc'
Your branch is up to date with 'origin/abc'.
  release/v0.0-75-g0c28b39

'develop'
Your branch is up to date with 'origin/develop'.
  release/v0.0-40-g26c30f9

'feature/0006/autoconf-make'
Your branch is up to date with 'origin/feature/0006/autoconf-make'.
  release/v0.0-34-g813676e

'feature/0009/documentation'
Your branch is up to date with 'origin/feature/0009/documentation'.
  release/v0.0-8-g1fd3640

'feature/0010/init'
Your branch is up to date with 'origin/feature/0010/init'.
  release/v0.0-27-gd470a7b

'feature/0011/launchpad-ppa0'
Your branch is up to date with 'origin/feature/0011/launchpad-ppa0'.
  release/v0.0-100-ga7a332f

'feature/0012/autoconf-packaging'
Your branch is up to date with 'origin/feature/0012/autoconf-packaging'.
  release/v0.0-37-gd974ee3

'feature/0013/teco-macros'
Your branch is behind 'origin/feature/0013/teco-macros' by 1 commit, and can be fast-forwarded.
  (use "git pull" to update your local branch)
  release/v0.0-37-g3b7f2dc

'feature/0015/package-deb'
Your branch is up to date with 'origin/feature/0015/package-deb'.
  release/v0.0-12-g26e8c9c

'feature/0017/ci-lp-a105'
Your branch is up to date with 'origin/feature/0017/ci-lp-a105'.
  release/v0.0-21-g622b67f

'feature/0018/debian-merge'
Your branch is up to date with 'origin/feature/0018/debian-merge'.
  release/v0.0-109-gbc1b3c8

'master'
Your branch is up to date with 'origin/master'.
  release/v0.0-2-g92b542b

'stage/0008/release/v0.0'
Your branch is up to date with 'origin/stage/0008/release/v0.0'.
  release/v0.0-74-g5c4b615

'stage/0016/deb'
Your branch is up to date with 'origin/stage/0016/deb'.
  release/v0.0-74-g2438f89

'test/a/aclocal'
  release/v0.0-31-g34f696c

'test/b/signing'
  release/v0.0-27-g543a2b4

What now

The next candidate for a focus is the branch feature/0013/teco-macros. The aim here is to show what works and what needs attention. This tree has tests that use the teco program in the ppa:glisze/ppa0 package archive.

Locally I use the guix teco package; verification of the ”’(here teco)”’ guix package definition that is on the teco releases page.

Clone this wiki locally