Fulltext results:
- roadmap
- ug fixing in other parts of the code. To keep the master branch from breaking, this type of work should generally... ork branches. * **Productization** is when the master branch is merged into the stable branch, and the stable branch is then cleaned up to be suitable for use by ever... known bugs. ===== Branches ===== The primary branch is called **master**. All builds are made from it automatically on a... system]]. This means that all development in the master branch must be atomic enough so that the branch remains releasable at any given moment. Other bra
- automated_build_system
- Every day at 01:00 UTC, the system checks if the master branch has new commits, and if so, tags and builds a new... SourceForge's file distribution servers. ===== Master branch ===== The automated build system operates on the branch called **master**, which is Doomsday's primary development branch. It is crucial that any changes made in the master branch will not break the automated releases. The RSS fe
- developer_guidelines
- wish to avoid cross-contaminating code. A feature branch is a branch from the working master that contains a set of changes specific to one task or feature. An added advantage of feature branches is the ability to open a pull request specifically with that feature branch's changes. ==== Integrate often ==== In order... , try to pull from your base often (e.g. ''origin master''). If you must make a merge commit (without conf
- getting_started_1.15_or_earlier
- nfiguration settings, type: git config -l Your master branch should be tracking //origin//'s (= the GitHub repository) master branch: branch.master.remote=origin branch.master.merge=refs/heads/master remote.origin.url=https://github.com/skyjake/Doomsday-Engine.git remote.origin... in/* You may find it convenient to set a default branch for pulling changes: git config pull.default tr