pgRouting / pgrouting

Repository contains pgRouting library. Development branch is "develop", stable branch is "master"
https://pgrouting.org
GNU General Public License v2.0
1.16k stars 366 forks source link

Added developer documents using doxygen #2433

Closed Aniket-debug closed 1 year ago

Aniket-debug commented 1 year ago

Fixes # 972

Changes proposed in this pull request:

cvvergara commented 1 year ago

Hi @Aniket-debug

1) can you make the PR to main branch, right now we are doing some fixes on main 3.4 and develop has not been pumped up to 3.5 yet. 2) can you squash the commits to be only one commit with a message: [get_check_data] added developer documentation other wise I will do the squashing if I see more than one commit.

you might need to do the following. starting from your branch mydevelop

git remote add upstream https://github.com/pgRouting/pgrouting
git rebase -i upstream/main
# edit the file to squash the 2 commits and to change the commit message
# save the file and the rebase will be done
git push -f

and from this PR you made, change the base branch to main

cvvergara commented 1 year ago

Using #2432