-
Notifications
You must be signed in to change notification settings - Fork 236
Pull Requests
Mahrud Sayrafi edited this page Dec 4, 2024
·
1 revision
This section describes the steps for contributing a new package or changes to existing code.
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 development
to change to it. If you do not see a development branch, you can get one with git fetch development
git 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 pull
to get the latest version into your computer's local repository.
- do this by going to
- Add a "Keywords" option to the call to
newPackage
, e.g.,You can find a list of existing keywords at the packages provided with Macaulay2 documentation page.newPackage("MyPackage", ... Keywords => {"Foo"}, ...)
- Make sure that the
DebuggingMode
option tonewPackage
is either removed or set tofalse
. - Move your new package(s) or changes to the directory
foo/M2/M2/Macaulay2/packages
wherefoo/M2
is the top level of your M2 repository.- Use
git add [FILES]
, followed bygit commit -m "some comment about your changes"
), whereFILES
is the list of files you are adding or changing - Also, add a line to the file
foo/M2/M2/Macaulay2/packages/=distributed-packages
with 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
Contribute
menu and selectingOpen Pull Request
. A new box will open. - Change the base branch of new pull requests to
development
if necessary. - Add a title and some comments about the package(s) or changes.
- Click on the
Create Pull Request
button.
- 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 push
as above. The system will automatically restart the pull request and the tests.
- Do
Homepage | Projects | Packages | Documentation | Events | Google Group