On Tue, Oct 18, 2011 at 3:07 PM, Julien Rioux <[email protected]> wrote: > On Tue, Oct 18, 2011 at 3:01 PM, Julien Rioux <[email protected]> wrote: >> Here I use >> git cl patch 5276054 > > Just a warning that this might not be the suggested procedure: if you > do this in master it might break things, I have no idea. So if you > know how to use branches, you could try that command in a branch, but > otherwise don't try it in master unless you're confident that it > doesn't cause problems. > > Cheers, > Julien >
git cl patch --help reveals the command-line option -n, --no-commit don't commit after patch applies which would be equivalent to using patch -p1 as you were doing. To sum it up, this one-liner downloads the patch for you and apply it locally without committing: git cl patch -n 5276054 _______________________________________________ lilypond-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/lilypond-devel
