-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove a use added for a purpose which is gone in the meantime. #866
remove a use added for a purpose which is gone in the meantime. #866
Conversation
killerbot242
commented
Jul 15, 2024
The following comments explains why it was added, and that indeed it is no longer needed, as such. jtv#851 (comment) Note that neither of these 2 cmake modules are for public use, they are internal cmake stuff. Nothing on the outside should use it. This was feedback given by kitware developers.
Thanks for this, @killerbot242, @tt4g, and anyone else! I've taken a bit of a vacation even from libpqxx (forced in part :-) but really glad to find this resolution of the mystery waiting for me. |
small question, I had to fork the project to create this PR, how can I get the master of my fork to be aligned with the official project ? because that will be the base on my fork for the next PR. |
@killerbot242 Add the original libpqxx repository under the name $ git remote add upstream https://github.com/jtv/libpqxx.git
$ git pull upstream master:master |
thanks tried that out, and seems to partially work: git pull upstream master:master
but on master I don't see the result of the latest PR. my cmake/config.cmake is not what I should be |
@killerbot242 Is your local git workspace a |
i create each PR on a branch, and then on github a button offers me to create a PR. Once that is done I try to get my fork to be totally in sync. Again with a button on github this kind of works, I say kind of, because the second PR , correctly;y showed 1 change (made on a new branch for that purpose), but is kind of also mentioning the commits of the previous PR. The suggest command lines did not bring my master up to date with the real repo, the button on github did, to be honest the content of the window it displays at the sync time is confusing to me. |
This is how git works. |
@killerbot242 you do need to go back to the |
i create each PR on a branch, and then on github a button offers me to create a PR. Once that is done I try to get my fork to be totally in sync. Again with a button on github this kind of works, I say kind of, because the second PR , correctly;y showed 1 change (made on a new branch for that purpose), but is kind of also mentioning the commits of the previous PR. The suggest command lines did not bring my master up to date with the real repo, the button on github did, to be honest the content of the window it displays at the sync time is confusing to me. |
Honestly, I too find this pretty confusing. If I knew what to do off the top of my head, I would gladly have told you. |