2

Can we use quilt to push/add to local git repository? If yes, kindly help me to specify the commands and any URL/link will be of immense help.

Thanks in advance.

RajSanpui
  • 11,556
  • 32
  • 79
  • 146

2 Answers2

2

If you're just looking to apply a quilt patch series, use git quiltimport as suggested by Luke Girvin.

If you want to use a workflow similar to quilt on git, I suggest you look at stgit, guilt(guilt gitweb), or topgit

Hasturkun
  • 35,395
  • 6
  • 71
  • 104
1

"git-quiltimport - Applies a quilt patchset onto the current branch":

http://www.kernel.org/pub/software/scm/git/docs/git-quiltimport.html

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84