https://github.com/cgal/cgal-public-dev
CGAL public development
https://github.com/cgal/cgal-public-dev
Last synced: 6 months ago
JSON representation
CGAL public development
- Host: GitHub
- URL: https://github.com/cgal/cgal-public-dev
- Owner: CGAL
- Created: 2015-03-02T10:39:16.000Z (over 11 years ago)
- Default Branch: empty-branch
- Last Pushed: 2025-02-28T18:44:35.000Z (over 1 year ago)
- Last Synced: 2025-02-28T22:36:48.568Z (over 1 year ago)
- Homepage:
- Size: 1.1 GB
- Stars: 20
- Watchers: 62
- Forks: 28
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cgal-public-dev
This is the Git repository used to store some on-going work by CGAL developers. The repository that hosts the `master` branch of CGAL is [`CGAL/cgal`](http://github.com/CGAL/cgal).
# Start working
To start working with this repository, you must also set the a remote repository that contains the `master` branch of CGAL:
git remote add cgal git@github.com:CGAL/cgal.git
Then you can create your own working branch. Say, your name is *rineau* and you will work on a new read/write function for the `Triangulation` package:
git checkout -b Triangulation-add_input_output-rineau --no-track cgal/master
More details on the developement of new features can be found on the [CGAL wiki](https://github.com/CGAL/cgal/wiki/Developing-Features-with-Git).