-
Couldn't load subscription status.
- Fork 259
Pull Requests
Before diving into the full guide, here are the top things that trip up even experienced Macaulay2 contributors. If you take a moment to check these out now, then you'll save everyone (including yourself!) time later.
-
Target the
developmentbranchThe default branch is
master, which contains a snapshot of the most recent stable release of Macaulay2. However, nearly all pull requests should targetdevelopment, which is where code for the next release of Macaulay2 is maintained. Since it's not the default branch, you will need to manually select it from a drop-down menu when creating a pull request.
-
Add your package to
=distributed-packagesAll packages should appear in the file =distributed-files in the
M2/Macaulay2/packagesdirectory. When submitting a new package, ensure that it is added to the bottom of this file. -
Add a
Keywordsoption tonewPackageWhen submitting a new package, pick a keyword (or keywords) from the headings at the packages provided with Macaulay2 documentation page. Keywords should appear as a list of strings as the value of the
Keywordsoption tonewPackageat the top of the main file, e.g.,:newPackage("MyCoolPackage", ... Keywords => {"Projective Algebraic Geometry"}, ...
-
Turn off debugging mode
Make sure that the
DebuggingModeoption tonewPackageisfalse, or equivalently sincefalseis the default, removed entirely.
Keep reading for a step-by-step walkthrough of how to fork the repo, create a new branch, make changes, and open your first PR.
This section describes the steps for contributing a new package or changes to existing code. See also GitHub's official documentation.
In order to open a "pull request" (PR) you need to:
- confirm that you can access GitHub by running
ssh -T git@github.com. See this page if you get authentication errors. - create your own "fork" of the Macaulay2 repository on GitHub by clicking here.
- create a local "clone" of the new repository on your computer by running:
# Replace <USERNAME> with your GitHub username
git clone git@github.com:<USERNAME>/M2.git && cd M2
- add the original Macaulay2 repository as the remote "upstream" by running:
git remote add -f -t development -m development upstream git@github.com:Macaulay2/M2.git
git checkout development
- Suppose that the Macaulay 2 repo is called foo/M2. Change to that directory.
- Type git branch to see your branches. If you see one called "development", but it is not starred, do
-
git switch developmentto change to it. If you do not see a development branch, you can get one with git fetch developmentgit switch development
-
- Make sure your development branch is up to date with Macaulay2',
- do this by going to
github.com/USERNAME/M2(where USERNAME as above is your github name) - change to the development branch (drop-down menu with the branch name)
- then use the drop down "Sync fork" button, to sync with Macaulay2's development branch.
- on your machine, in the directory "foo/M2", do
git pullto get the latest version into your computer's local repository.
- do this by going to
- Move your new package(s) or changes to the directory
foo/M2/M2/Macaulay2/packageswherefoo/M2is the top level of your M2 repository.- Use
git add [FILES], followed bygit commit -m "some comment about your changes"), whereFILESis the list of files you are adding or changing - Also, add a line to the file
foo/M2/M2/Macaulay2/packages/=distributed-packageswith the name of each new package on its own line, add newline character too at the end, andgit add M2/Macaulay2/packages/=distributed-packages,git commit -m "editing =distributed-packages"
- Use
- initiate the pull pull request using the dropdown
Contributemenu and selectingOpen Pull Request. A new box will open. - Change the base branch of new pull requests to
developmentif necessary. - Add a title and some comments about the package(s) or changes.
- Click on the
Create Pull Requestbutton.
- The system will check your spelling and run all the Documentation and the TESTs on various systems. If errors are found,
fix them. Make the necessary changes to your files on your machine in
foo/M2/M2/Macaulay2/packages.- Do
git add,git commit, andgit pushas above. The system will automatically restart the pull request and the tests.
- Do
Homepage | Projects | Packages | Documentation | Events | Google Group