I am new to SVN but knew GIT. I read this question : How to send pull request on Git
A question, can SVN pull request same as GIT ?
I am new to SVN but knew GIT. I read this question : How to send pull request on Git
A question, can SVN pull request same as GIT ?
A pull request in Git is typically used to ask someone, using his own repo, to pull changes from another repo (which is a clone of the original repo).
SVN only uses one repo for everybody, so the closest matches to a pull request would be:
This can be done in SVN, but it is more complex and requires a secondary branch. When development is complete in your branch:
Note 1: Depending on the size of your software baseline this can be very time consuming.
Note 2: Warning; If you attempt to merge the trunk with (pull updates into) your original development branch directly, you will create a paradox that reverses the changes you want to integrate. This can be very difficult to recover from.