-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ra/anno: Add git-annotate, a tool for assigning blame. git-svn: 0.9.1: add --version and copyright/license (GPL v2+) information contrib/git-svn: add Makefile, test, and associated ignores git-svn: fix several corner-case and rare bugs with 'commit' contrib/git-svn.txt: add a note about renamed/copied directory support git-svn: change ; to && in addremove() git-svn: remove any need for the XML::Simple dependency git-svn: Allow for more argument types for commit (from..to) git-svn: allow --find-copies-harder and -l<num> to be passed on commit git-svn: fix a typo in defining the --no-stop-on-copy option
- Loading branch information
Showing
7 changed files
with
854 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
git-svn | ||
git-svn.xml | ||
git-svn.html | ||
git-svn.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
all: git-svn | ||
|
||
prefix?=$(HOME) | ||
bindir=$(prefix)/bin | ||
mandir=$(prefix)/man | ||
man1=$(mandir)/man1 | ||
INSTALL?=install | ||
doc_conf=../../Documentation/asciidoc.conf | ||
-include ../../config.mak | ||
|
||
git-svn: git-svn.perl | ||
cp $< $@ | ||
chmod +x $@ | ||
|
||
install: all | ||
$(INSTALL) -d -m755 $(DESTDIR)$(bindir) | ||
$(INSTALL) git-svn $(DESTDIR)$(bindir) | ||
|
||
install-doc: doc | ||
$(INSTALL) git-svn.1 $(DESTDIR)$(man1) | ||
|
||
doc: git-svn.1 | ||
git-svn.1 : git-svn.xml | ||
xmlto man git-svn.xml | ||
git-svn.xml : git-svn.txt | ||
asciidoc -b docbook -d manpage \ | ||
-f ../../Documentation/asciidoc.conf $< | ||
test: | ||
cd t && $(SHELL) ./t0000-contrib-git-svn.sh | ||
|
||
clean: | ||
rm -f git-svn *.xml *.html *.1 |
Oops, something went wrong.