aboutsummaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAge
...
* contrib/git-svn.txt: add a note about renamed/copied directory supportEric Wong2006-02-20
| | | | | Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: change ; to && in addremove()Eric Wong2006-02-20
| | | | | Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: remove any need for the XML::Simple dependencyEric Wong2006-02-20
| | | | | | | | | | | XML::Simple was originally required back when I made svn-arch-mirror because I needed to explictly track renames with Arch. Then I carried it over to git-svn because I was afraid somebody could commit an svn log message that could throw off a non-XML log parser. Then I noticed the <n> lines column in the header. So, no more XML :) Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: Allow for more argument types for commit (from..to)Eric Wong2006-02-20
| | | | | | | | | | Allow 'from..to' notation from the command line. More liberal sha1 parsing when reading from stdin no longer requires the sha1 to be the first character, so a leading 'commit ' string is OK. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: allow --find-copies-harder and -l<num> to be passed on commitEric Wong2006-02-20
| | | | | | | | Both of these options are passed directly to git-diff-tree when committing to a SVN repository. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: fix a typo in defining the --no-stop-on-copy optionEric Wong2006-02-20
| | | | | | | | Just a typo, I doubt anybody would use (and I highly recommend not using) this option anyways. But you never know... Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* Add an Emacs interface in contrib.Alexandre Julliard2006-02-18
| | | | | | | | | | | | | | | | | | | | | | | | | | This is an Emacs interface for git. The user interface is modeled on pcl-cvs. It has been developed on Emacs 21 and will probably need some tweaking to work on XEmacs. The basic command is 'M-x git-status' which displays a buffer listing modified files in the selected project tree. In that buffer the following features are supported: - add/remove files - list unknown files - commit marked files - manage .gitignore - commit merges based on MERGE_HEAD - revert files to the HEAD version - resolve conflicts with smerge or ediff - diff files against HEAD/base/mine/other or combined diff - get a log of the revisions for specified files There are plenty of unimplemented features too, see the TODO list at the top of the file... Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
* gitview: typofixAneesh Kumar K.V2006-02-18
| | | | Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
* git-svn: remove files from the index before adding/updatingEric Wong2006-02-18
| | | | | | | | This fixes a bug when importing where a directory gets removed/renamed but is immediately replaced by a file of the same name in the same revision. Signed-off-by: Eric Wong <normalperson@yhbt.net>
* Add a README for gitviewAneesh Kumar K.V2006-02-17
| | | | Signed-off-by: Junio C Hamano <junkio@cox.net>
* Add contrib/README.Junio C Hamano2006-02-17
| | | | Signed-off-by: Junio C Hamano <junkio@cox.net>
* Add contrib/gitview from Aneesh.Aneesh Kumar2006-02-17
| | | | Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: ensure fetch always works chronologically.Eric Wong2006-02-17
| | | | | | | | | | | | | | | We run svn log against a URL without a working copy for the first fetch, so we end up a log that's sorted from highest to lowest. That's bad, we always want lowest to highest. Just default to --revision 0:HEAD now if -r isn't specified for the first fetch. Also sort the revisions after we get them just in case somebody accidentally reverses the argument to --revision for whatever reason. Thanks again to Emmanuel Guerin for helping me find this. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-svn: fix revision order when XML::Simple is not loadedEric Wong2006-02-17
| | | | | | | Thanks to Emmanuel Guerin for finding the bug. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
* Introducing contrib/git-svn.Eric Wong2006-02-16