github-actions[bot] on gh-pages
Update users documentation for … (compare)
krashish8 on develop
chore: Included githubactions i… Bump actions/checkout from 2 to… Bump MarkusJx/install-boost fro… and 1 more (compare)
change this:
set(PGROUTING_OBJECTS ${PGROUTING_OBJECTS} "$<TARGET_OBJECTS:${subdir}>" include/cpp_common/interruption.h)
to
set(PGROUTING_OBJECTS ${PGROUTING_OBJECTS} "$<TARGET_OBJECTS:${subdir}>")
.. changelog start
* :ref:`changelog_3_0_1`
* :ref:`changelog_3_0_0`
git status
you should see that the file NEWS changed
git checkout -b interruptions
git remote add upstream https://github.com/pgRouting/pgrouting
git fetch upstream
git remote -v
git rebase -i upstream/master
#
pick
to squash
in all the commits except the first one
pick 3f5a7a3cc Check interruption in include/dijkstra
squash c1e8d07cd Check interruption in include/dijkstra
squash f67c53d5a Check interruption in include/allpairs
...
# This is a combination of 26 commits.
# This is the 1st commit message:
Check interruption in include/dijkstra
# This is the commit message #2:
Check interruption in include/dijkstra
# This is the commit message #3:
Check interruption in include/allpairs
...
you need to change the comands from pick to squash as in this examplepick 3f5a7a3cc Check interruption in include/dijkstra squash c1e8d07cd Check interruption in include/dijkstra squash f67c53d5a Check interruption in include/allpairs ...