Github Pull Request steps
If you forked a long time ago, first go to the bottom of
Settingsin your repository and delete it.Open Alas origin repository, click
Forkin the upper right corner, then clickCreate forkin green belowGo to your own Alas repository and
clonethedevbranch to localshellgit clone url -b devRead the Alas development documentation
Here's your chance to become an honorable Alas contributor!
During development, it is recommended to submit
commitafter completing all functions/tasks, and don't forget to writemessagein the followinguniform formatshellgit commit -m 'message'Example of uniform format for message.
Upd: [EN] RESEARCH_UNAVAILABLE Add: Handle the 6th research project Fix: Continuous click in research_queue_add() on slow PCsPush the local branch to your own repository after you finish development
shellgit push -u originFor the first time the
pushneeds to set the upload stream (--set-upstream) follow the tips, then continue with step 7Open the Alas repository. Submit a
pull request(which will automatically carry yourcommitmessage) and wait for the administrator to approve it. Note: Commit to thedevbranch, not to themasterbranch!When there are changes to the original Alas repository (made by someone else), you need to fetch and merge changes to your onw repository first
Add upstream of the original Alas repository
shellgit remote add upstream https://github.com/LmeSzinc/AzurLaneAutoScript.gitFetch updates from the original Alas repository
shellgit fetch upstreamMerge the changes
shellgit merge upstream/devHandle branch conflicts
Repeat the actions in steps 5, 6, 7, and 8