Le 28/02/2019 à 11:47, Rainer Jung a écrit : > Thanks a bunch. Looks like what I was searching for, will try it. > > Rainer
You could play with a single repository too: # Initial setup cd ~/repos git clone [email protected]:apache/tomcat.git # Commit... cd ~/repos/tomcat # edit files git commit -a -m "Some message" git push # ...and backport git checkout 8.5.x git cherry-pick <hash> git push origin 8.5.x git checkout master Emmanuel Bourg --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
