Tagged Questions

5
votes
3answers
2k views

What is a quilt patchset?

There is a git command called git-quiltimport. Its man pages says it "Applies a quilt patchset onto the current git branch, preserving the patch boundaries, patch order, and patch descriptions present ...
4
votes
4answers
201 views

Maintain set of local commits working with git-svn

I am using git to develop against a project hosted in subversion, using git-svn: git svn clone svn://project/ My general workflow has been to repeatedly edit-and-commit on the master branch, then ...
2
votes
2answers
50 views

Can we use quilt to push/add to local git repository?

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.
2
votes
2answers
220 views

Versioning when binary AND text files are involved?

I have a project where I need to maintain changes to both the text and binary files. I have a couple of options: Use patches Use a versioning system like git or hg. For my purposes, patches are a ...