mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-07 02:34:34 +00:00
Page:
Accessing git repository
Pages
Accessing git repository
Automation Internals
Becoming a Theme Developer
Becoming a coder
Coding Conventions
Compiling
Contributing Step by Step
Copyright information
Creating a localization
Debugging LMMS
Debugging Travis CI
Dependencies Arch
Dependencies Debian
Dependencies Fedora
Dependencies MacOS
Dependencies OpenSUSE
Dependencies Ubuntu
Dependencies Windows
Developer Resources
External Plugins
FAQ
Generating Documentation With Doxygen
Google Summer of Code 2020 ideas
Home
How to compile LMMS on x64 Windows
LMMS Architecture
Labels Information
Lv2
Mailmap
Making a music on LMMS
Packaging Ubuntu PPA
Plugin development
Project Maintainers
Realtime conventions
Reporting Issues
Reviewing Pull Requests
Submitting a patch
Testing Pull Requests
Troubleshooting
Unit testing
Using Vcpkg
Widget Overview
[Git] Fast forward personal branch to upstream
No results
8
Accessing git repository
Mildanner edited this page 2025-12-12 00:10:59 -03:00
Table of Contents
Anonymous Git
Assuming you have git installed, you first have to get a copy of the Git repository:
git clone --recursive https://github.com/LMMS/lmms.git
This will clone the master branch, which can be unstable and have bugs.
If you wish to switch to the current stable branch (for the purpose of compiling LMMS by yourself):
cd lmms
git checkout stable-1.2
For instructions on how to compile LMMS, visit Compiling.
If you want to update your copy simply type
git remote update
git pull
git submodule update --init --recursive
inside lmms-directory. The first step usually can be omitted.
Browse Git code
For browsing the Git repository easily you can also use the Git Web interface.
Index
LMMS.