A CLI tool for managing large amounts of GitHub repositories
Project description
RepoBee - A CLI tool for administrating Git repositories on GitHub
Overview
RepoBee is A CLI tool for administrating large amounts of Git repositories,
geared towards teachers and GitHub Enterprise. The most basic use case is to
automate generation of student repositories based on master (i.e. template)
repositories, that can contain for example instructions and skeleton code.
There is however a whole lot more on offer, such as batch updating and cloning,
simple peer review functionality as well as issue management features. There is
also a plugin system in place that
allows Python programmers to expand RepoBee in various ways. The
repobee-junit4
plugin plugin is
one such plugin, which runs JUnit4 test classes on Java code in cloned student
repos.
RepoBee is currently being used for the introductory courses in computer science at KTH Royal Technical Institute of Technology. The courses have roughly 200 students and several thousands of repositories, allowing us to test RepoBee at quite a large scale.
Feature highlights
- Generate repositories for students based on master (template) repositories
- Clone student repositories in batches
- Peer review features: give students read access to other students' repositories to do code review. Easily revoke read access once reviews are done.
- Support for group assignments (multiple students per repository)
- Open, close and list issues for select student repositories
- Extend RepoBee with the plugin system
- Support both for GitHub Enterprise and github.com
- GitLab support is in alpha, see Upcoming features
- Very little configuration required on the GitHub side
- The only requirement is to have an Organization with private repository capabilities!
- No local configuration required
- Although setting a few defaults is highly recommended
Install
RepoBee is on PyPi, so python3 -m pip install repobee
should do the trick. See the
install instructions
for more elaborate instructions.
Getting started
The best way to get started with RepoBee is to head over to the Docs, where you (among other things) will find the user guide. It covers the use of RepoBee's varous commands by way of practical example, and should set you on the right path with little effort.
Why RepoBee?
RepoBee was developed at KTH Royal Technical Institute of Technology to help teachers and TAs administrate GitHub repositories. It's a tool for teachers, by teachers, and we use it in our everyday work. All of the features in RepoBee are of some use to us, and so should also be useful to other teachers. We also recognize that lock-in is a problem
Below is
a complete list of core functionality as described by the --help
option.
$ repobee -h
usage: repobee [-h] [-v]
{show-config,setup,update,migrate,clone,open-issues,
close-issues,list-issues,assign-reviews,
purge-review-teams,check-reviews,verify-settings}
...
A CLI tool for administering large amounts of git repositories on GitHub
instances. See the full documentation at https://repobee.readthedocs.io
positional arguments:
{show-config,setup,update,migrate,clone,open-issues,
close-issues,list-issues,assign-reviews,
purge-review-teams,check-reviews,verify-settings}
show-config Show the configuration file
setup Setup student repos.
update Update existing student repos.
migrate Migrate master repositories into the target
organization.
clone Clone student repos.
open-issues Open issues in student repos.
close-issues Close issues in student repos.
list-issues List issues in student repos.
assign-reviews Randomly assign students to peer review each others'
repos.
purge-review-teams Remove all review teams associated with the specified
students and master repos.
check-reviews Fetch all peer review teams for the specified student
repos, and check which assigned reviews have been done
(i.e. which issues have been opened).
verify-settings Verify your settings, such as the base url and the
OAUTH token.
optional arguments:
-h, --help show this help message and exit
-v, --version Display version info
Roadmap
As of December 17th 2018, RepoBee's CLI is a stable release and adheres to Semantic Versioning 2.0.0. The internals of RepoBee do not adhere to this versioning, so using RepoBee as a library is not recommended.
The plugin system is considered to be in the alpha phase, as it has seen much less live action use than the rest of the CLI. Features are highly unlikely to be cut, but hooks may be modified as new use-cases arise as the internals of RepoBee need to be altered.
Upcoming features
There is still a lot in store for RepoBee. Below is a roadmap for major features that are in the works.
Feature | Status | ETA |
---|---|---|
GitLab support | Work in progress (Docs) | Alpha release in v1.5.0 |
Peer review support for group assignments | Work in progress (#167) | June 2019 |
Cleaner CLI help menus | Work in progress (#164) | June 2019 |
Plugin support for top-level CLI commands | Planning | TBA |
Travis CI plugin | Planning (#165) | TBA |
License
This software is licensed under the MIT License. See the LICENSE file for specifics.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.