Tue, 17 Oct 2023 18:01:10 -0000:

jkesselm commented on PR #103:
URL: https://github.com/apache/xalan-java/pull/103#issuecomment-1766904894

    ...
    Committed and forced push.

One last note. Developers that have cloned and checked out previous master should not make the mistake of:

    git checkout master
    git pull  # with a default auto-merge
    git push  # that would be preposterous

Unless they have local commits on top of the old master, they should:

    git checkout master
    git fetch
    git reset origin/master

If they have local commits on top of the old master they would like to keep – save them to a development branch before the reset of master:

    git branch my-work master

--
Stanimir

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to