Changes between Version 6 and Version 7 of drm4gDevelopment
- Timestamp:
- Dec 12, 2016 5:06:21 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
drm4gDevelopment
v6 v7 1 1 {{{#!comment 2 2 Contributing 3 If you want to contribute to this repository please be aware that this project uses a gitflow workflow with the next release branch called next.3 If you want to contribute to this repository please be aware that this project uses a gitflow/workflow with the next release branch called next. 4 4 Please fork this repository and create a local branch split off of the next branch and create pull requests back to the origin next branch. 5 5 … … 55 55 git init #to initialize an empty Git repository 56 56 git remote add origin <your_repository_url> #to make your local repository point to your remote repository in GitHub 57 git fetch 57 58 git checkout develop #to create a local copy of the develop branch 58 59 }}} … … 63 64 With this, you will now have DRM4G's source code at your disposal. 64 65 66 {{{#!comment 65 67 There are a lot of tutorials showing how to use git, including [[wiki:versionControl/git|our own]], but here is a more specific one, a simple step by step explanation on how to start using it to help us improve DRM4G. 68 }}} 66 69 67 70 From here you could create branches for every new feature you'd like to include to the DRM4G, for a more in depth tutorial on how to do that, click [[https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging|here]].