~~NOTOC~~ ====== Using Git within the Xfce development workflow ====== * **[[start#Introduction|Introduction]]** * **[[start#Setting your Git credentials|Setting your Git credentials]]** * **[[start#Git usage example on an Xfce project|Git usage example on an Xfce project]]** * **[[start#Commit Guidelines|Commit Guidelines]]** * **[[start#GitLab Forks and Merge Requests|GitLab Forks and Merge Requests]]** * **[[start#Git rules on gitlab.xfce.org|Git rules on gitlab.xfce.org]]** * **[[start#Git repository description|Git repository description]]** * **[[:contribute/dev/git/github|Xfce GitHub mirror]]** ---- ===== Introduction ===== Xfce uses Git as distributed version control system (DCVS) for all the code contributed by developers. On this page, we will explain the basics and initial setup needed to get started developing for Xfce. However, if you want to know it all about Git, look at the following websites for a more in depth examination of Git and its usage: ---- === Git resources === * [[https://git-scm.com/docs|Official books and reference manual]] * [[https://git-scm.com/docs/gittutorial|Official Git tutorial]] * [[https://git.github.io/git-reference/| Git Reference (via GitHub)]] * Use ''man git '' in your terminal emulator * Your favorite search engine === Additional Git information related to Xfce === * **[[tips-and-tricks|Tips and Tricks]]** -- Some additional functionality that is nice to know. * **[[github|GitHub mirror]]** -- What we do with the GitHub mirror of the Xfce repositories. ---- ===== Setting your Git credentials ===== Before you even think about committing changes, you must set your name and email address to something valid in your **local** Git config: git config --global user.name "J. Random Hacker" git config --global user.email "jrandom@example.com" Make sure the email address is a __valid__ address, there is a hook on the server that checks the address of every new commit. [[|Back To Top]] ---- ===== Git usage example on an Xfce project ===== The intention, here, is not to fully explain Git; but, only provide a short introduction on how it works to get you started working with Xfce's development workflow. You can find the clone URL in the summary page of each repository in the [[https://gitlab.xfce.org|Git browser]]. In the example below, we do some tasks in the [[https://gitlab.xfce.org/xfce/xfwm4/|xfwm4]] repository. # Make a local clone of the upstream repository git clone https://gitlab.xfce.org/xfce/xfwm4.git # To keep the local copy updated with upstream you can run this from time to time # Possibly append --rebase to fetch upstream changes and apply you modifications on # top of those, instead of trying to merge them git pull # If you made some small modifications in the code you can view them in a unified patch git diff git status In order to propose your changes you can **fork the repository** in question and then push your code to it and **propose it via a merge request** to the maintainers. **What ever you do, keep commits clean:** * Make incremental, atomic changes (one aspect at a time). * Keep code working after every commit. * Comment the code you write. * Write commit messages using the standard Git message format. * Don't fear the rebase (against the Xfce master branch): you should fix the merge problems, not the developer. * Read the guidelines below [[|Back To Top]] ---- ===== Commit Guidelines ===== * The commit message is made of summary (first line), one empty line and the remaining lines are its description. * Keep the summary short, aim for up to 72 characters. * You're encouraged to write an extensive description when it makes sense, [[https://gitlab.xfce.org/xfce/xfwm4/-/commit/49c1a33a4dfe15f312334584c22b4ec3ed792214|example]] * Add reference to the related issue or merge request at the end of summary. * Reference for an issue: "Shorten strings in Arrange Items submenu (#247)" * Reference for a merge request: "Add new app icon (!11)" * When a commit relates to an issue and a merge request, only add the former to the summary and mention the latter in the description. * Optionally Sign Off your commits (mandatory for Xfwm4!). * GitLab's [[https://docs.gitlab.com/ce/user/project/issues/managing_issues.html#default-closing-pattern|closing patterns]] such as ''fixes'' and ''closes'' should go into the commit description, never in the summary. * When making isolated changes, such as in a single part of the project or one of its plugins, please add a lowercase label as the summary prefix, examples: * "mime-helpers: Rename Thunar to thunar" * "action buttons: Fix separator width" * "tasklist: Allow keyboard navigation within groups (#270)" [[|Back To Top]] ---- ===== GitLab Forks and Merge Requests ===== If you want to contribute code, the best way is to get a contributor's account and fork the project you would like to contribute to and file a [[https://gitlab.xfce.org/help/user/project/merge_requests/index.md|merge request]]. - Ask for fork permissions [[/contribute/start#communication|on the mailing list or in our Matrix channel]] - Fork the project via the GitLab UI - Clone your fork locally - **Create a new branch** (try to use a descriptive name), don't use "master" (otherwise we cannot rebase and merge your branch) - Change and push your code to your fork/branch - Start a merge request and [[https://docs.gitlab.com/ee/user/project/merge_requests/allow_collaboration.html|allow maintainers to change your branch]] (this means maintainers can rebase your branch on top of master using the GitLab Web UI) - Wait patiently [[|Back To Top]] ---- ===== Git rules on gitlab.xfce.org ===== The following rules apply: * You can only push fast-forward commits (upstream can not lose refs) * Email addresses of each commit are validated * Only annotated tags are allowed, tags cannot be deleted [[|Back To Top]] ---- ===== Git repository description ===== The repository description shall be set via a Readme markdown file. See the [[https://gitlab.xfce.org/help/user/markdown|Gitlab flavored markdown documentation]] for reference. [[|Back To Top]] ---- [[:contribute:dev:start:|Back to main Xfce Development Information page]]