FlightGear Git

From FlightGear wiki
Revision as of 13:38, 20 March 2014 by Chrisb (talk | contribs) (bittorrent download)
Jump to navigation Jump to search
The fgdata repository on Gitorious.

Git is a version control system, used by the FlightGear project to store all of the files required to build FlightGear. This includes all the programs, the data (e.g. aircraft), supporting tools, etc. Git tracks updates to every file, as developers from around the world work together concurrently to create new versions.

While new FlightGear features and additions are in development, they are available from Git before they are available in the standard release version. Using Git allows users to use the newest possible version of FlightGear from the latest source files, to experiment with new aircraft or other features. However, it is not a beginner's tool. Using Git can expose the user to unstable features that show ugly error messages, or crash the computer.

The Git repositories are located at Gitorious and a mirror is hosted at the Mapserver.

Please click one of the links in the menu on the right

Motivation

In May 2010, after a hardware failure on the CVS servers, the FlightGear project changed its version control system from CVS to Git.

Much has been written on the advantages of Git over CVS. For the FlightGear project, some advantages are:

  • Much better support for branches and merging branches. This is especially important for creating bug-fix releases for major releases while still allowing work on the next major release to continue. It is also very nice for a developer's personal work-flow.
  • Easier path for contributors to submit changes and developers to integrate them.
  • Much better support for everyday tasks like searching the project history for changes, viewing changes, bisecting the project history to find the original source of a bug.

Repositories and branches

The FlightGear project is split up in various repositories. The most important ones are listed below. Each repository contains various branches, of which one the most important ones are listed here.

  • simgear: the simulation engine that FlightGear uses.
    • next: current tip of new development. This branch should always compile and run, but various things could be broken.
    • release/*: containing former and (if there is already defined one) upcoming releases.
  • flightgear: FlightGear itself.
    • next: current tip of new development. This branch should always compile and run, but various things could be broken.
    • release/*: containing former and (if there is already defined one) upcoming releases.
  • fgdata: all data (aircraft, dialogs, sounds) used by FlightGear.
    • master: current branch that is used with the next branch of the code.
    • release/*: used with the release branch of the code.

Related content