3.1 KiB
Contributing to PandaCord
This file explains how to deal with patch based projects, using the provided scripts. This documentation is based on Waterfall’s CONTRIBUTING.md
Understanding Patches
Patches to PandaCord are very simple, but center around the directory 'PandaCord-Proxy'
Assuming you already have forked the repository:
- Pull the latest changes from the main repository
- Type
./pandacord p
in git bash to apply the changes from upstream - cd into
PandaCord-Proxy
for proxy changes
This directory is not a git repository in the traditional sense:
- Every single commit in PandaCord-Proxy is a patch.
- 'origin/master' points to a directory similar to PandaCord-Proxy but for PandaCord
- Typing
git status
should show that we are 10 or 11 commits ahead of master, meaning we have 10 or 11 patches that PandaCord, Waterfall, and Bungeecord don't- If it says something like
212 commits ahead, 207 commits behind
, then typegit fetch
to update PandaCord
- If it says something like
Adding Patches
Adding patches to PandaCord is very simple:
- Modify
PandaCord-Proxy
with the appropriate changes - Type
git add .
to add your changes - Run
git commit
with the desired patch message - Run
./pandacord rb
in the main directory to convert your commit into a new patch - PR your patches back to this repository
Your commit will be converted into a patch that you can then PR into PandaCord
Modifying Patches
Modifying previous patches is a bit more complex:
Method 1
This method works by temporarily resetting HEAD to the desired commit to edit using rebase.
- If you have changes you are working on type
git stash
to store them for later.
- Later you can type
git stash pop
to get them back.
- Type
git rebase -i upstream/upstream
- It should show something like this.
- Replace
pick
withedit
for the commit/patch you want to modify, and "save" the changes.
- Only do this for one commit at a time.
- Make the changes you want to make to the patch.
- Type
git add .
to add your changes. - Type
git commit --amend
to commit.
- MAKE SURE TO ADD
--amend
or else a new patch will be created. - You can also modify the commit message here.
- Type
git rebase --continue
to finish rebasing. - Type
./pandacord rb
in the main directory.
- This will modify the appropriate patches based on your commits.
- PR your modifications back to this project.
Method 2 (sometimes easier)
If you are simply editing a more recent commit or your change is small, simply making the change at HEAD and then moving the commit after you have tested it may be easier.
- Make your change while at HEAD
- Make a temporary commit. You don't need to make a message for this.
- Type
git rebase -i upstream/upstream
, move (cut) your temporary commit and move it under the line of the patch you wish to modify. - Change the
pick
withf
(fixup) ors
(squash) if you need to edit the commit message - Type
./pandacord rb
in the main directory.
- This will modify the appropriate patches based on your commits.
- PR your modifications to github