Browse Source

Merge branch 'ts/doctar' into next

* ts/doctar:
  Documentation/Makefile: create tarballs for the man pages and html files
  SubmittingPatches: The download location of External Editor has moved
  Make git-check-format-ref a builtin.
  Make "git rev-list" be a builtin
  builtin-diff: do not say files are renamed when blob and file are given
  Provide a way to flush git-diff-tree's output
maint
Junio C Hamano 19 years ago
parent
commit
2c57ebc223
  1. 4
      Documentation/SubmittingPatches
  2. 8
      Documentation/install-webdoc.sh
  3. 30
      Makefile
  4. 14
      builtin-check-ref-format.c
  5. 2
      builtin-diff.c
  6. 5
      builtin-rev-list.c
  7. 2
      builtin.h
  8. 17
      check-ref-format.c
  9. 5
      diff-tree.c
  10. 2
      git.c

4
Documentation/SubmittingPatches

@ -266,8 +266,8 @@ This recipe appears to work with the current [*1*] Thunderbird from Suse. @@ -266,8 +266,8 @@ This recipe appears to work with the current [*1*] Thunderbird from Suse.
The following Thunderbird extensions are needed:
AboutConfig 0.5
http://aboutconfig.mozdev.org/
External Editor 0.5.4
http://extensionroom.mozdev.org/more-info/exteditor
External Editor 0.7.2
http://globs.org/articles.php?lng=en&pg=8

1) Prepare the patch as a text file using your method of choice.


8
Documentation/install-webdoc.sh

@ -4,12 +4,16 @@ T="$1" @@ -4,12 +4,16 @@ T="$1"

for h in *.html *.txt howto/*.txt howto/*.html
do
diff -u -I'Last updated [0-9][0-9]-[A-Z][a-z][a-z]-' "$T/$h" "$h" || {
if test -f "$T/$h" &&
diff -u -I'Last updated [0-9][0-9]-[A-Z][a-z][a-z]-' "$T/$h" "$h"
then
:; # up to date
else
echo >&2 "# install $h $T/$h"
rm -f "$T/$h"
mkdir -p `dirname "$T/$h"`
cp "$h" "$T/$h"
}
fi
done
strip_leading=`echo "$T/" | sed -e 's|.|.|g'`
for th in "$T"/*.html "$T"/*.txt "$T"/howto/*.txt "$T"/howto/*.html

30
Makefile

@ -158,19 +158,19 @@ PROGRAMS = \ @@ -158,19 +158,19 @@ PROGRAMS = \
git-ls-files$X git-ls-tree$X git-mailinfo$X git-merge-base$X \
git-merge-index$X git-mktag$X git-mktree$X git-pack-objects$X git-patch-id$X \
git-peek-remote$X git-prune-packed$X git-read-tree$X \
git-receive-pack$X git-rev-list$X git-rev-parse$X \
git-receive-pack$X git-rev-parse$X \
git-send-pack$X git-show-branch$X git-shell$X \
git-show-index$X git-ssh-fetch$X \
git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
git-unpack-objects$X git-update-index$X git-update-server-info$X \
git-upload-pack$X git-verify-pack$X git-write-tree$X \
git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
git-update-ref$X git-symbolic-ref$X \
git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \
git-describe$X git-merge-tree$X git-blame$X git-imap-send$X

BUILT_INS = git-log$X git-whatchanged$X git-show$X \
git-count-objects$X git-diff$X git-push$X \
git-grep$X git-add$X
git-grep$X git-add$X git-rev-list$X git-check-ref-format$X

# what 'all' will build and 'install' will install, in gitexecdir
ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
@ -218,7 +218,7 @@ LIB_OBJS = \ @@ -218,7 +218,7 @@ LIB_OBJS = \

BUILTIN_OBJS = \
builtin-log.o builtin-help.o builtin-count.o builtin-diff.o builtin-push.o \
builtin-grep.o builtin-add.o
builtin-grep.o builtin-add.o builtin-rev-list.o builtin-check-ref-format.o

GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
LIBS = $(GITLIBS) -lz
@ -655,6 +655,25 @@ dist: git.spec git-tar-tree @@ -655,6 +655,25 @@ dist: git.spec git-tar-tree
rpm: dist
$(RPMBUILD) -ta $(GIT_TARNAME).tar.gz

htmldocs = git-htmldocs-$(GIT_VERSION)
manpages = git-manpages-$(GIT_VERSION)
dist-doc:
rm -fr .doc-tmp-dir
mkdir .doc-tmp-dir
$(MAKE) -C Documentation WEBDOC_DEST=../.doc-tmp-dir install-webdoc
cd .doc-tmp-dir && $(TAR) cf ../$(htmldocs).tar .
gzip -n -9 -f $(htmldocs).tar
:
rm -fr .doc-tmp-dir
mkdir .doc-tmp-dir .doc-tmp-dir/man1 .doc-tmp-dir/man7
$(MAKE) -C Documentation DESTDIR=. \
man1=../.doc-tmp-dir/man1 \
man7=../.doc-tmp-dir/man7 \
install
cd .doc-tmp-dir && $(TAR) cf ../$(manpages).tar .
gzip -n -9 -f $(manpages).tar
rm -fr .doc-tmp-dir

### Cleaning rules

clean:
@ -662,8 +681,9 @@ clean: @@ -662,8 +681,9 @@ clean:
$(LIB_FILE) $(XDIFF_LIB)
rm -f $(ALL_PROGRAMS) $(BUILT_INS) git$X
rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
rm -rf $(GIT_TARNAME)
rm -rf $(GIT_TARNAME) .doc-tmp-dir
rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
rm -f $(htmldocs).tar $(manpages).tar
$(MAKE) -C Documentation/ clean
$(MAKE) -C templates clean
$(MAKE) -C t/ clean

14
builtin-check-ref-format.c

@ -0,0 +1,14 @@ @@ -0,0 +1,14 @@
/*
* GIT - The information manager from hell
*/

#include "cache.h"
#include "refs.h"
#include "builtin.h"

int cmd_check_ref_format(int argc, const char **argv, char **envp)
{
if (argc != 2)
usage("git check-ref-format refname");
return !!check_ref_format(argv[1]);
}

2
builtin-diff.c

@ -122,7 +122,7 @@ static int builtin_diff_b_f(struct rev_info *revs, @@ -122,7 +122,7 @@ static int builtin_diff_b_f(struct rev_info *revs,
stuff_change(&revs->diffopt,
canon_mode(st.st_mode), canon_mode(st.st_mode),
blob[0].sha1, null_sha1,
blob[0].name, path);
path, path);
diffcore_std(&revs->diffopt);
diff_flush(&revs->diffopt);
return 0;

5
rev-list.c → builtin-rev-list.c

@ -7,6 +7,7 @@ @@ -7,6 +7,7 @@
#include "tree-walk.h"
#include "diff.h"
#include "revision.h"
#include "builtin.h"

/* bits #0-15 in revision.h */

@ -36,7 +37,7 @@ static const char rev_list_usage[] = @@ -36,7 +37,7 @@ static const char rev_list_usage[] =
" --bisect"
;

struct rev_info revs;
static struct rev_info revs;

static int bisect_list = 0;
static int show_timestamp = 0;
@ -291,7 +292,7 @@ static void mark_edges_uninteresting(struct commit_list *list) @@ -291,7 +292,7 @@ static void mark_edges_uninteresting(struct commit_list *list)
}
}

int main(int argc, const char **argv)
int cmd_rev_list(int argc, const char **argv, char **envp)
{
struct commit_list *list;
int i;

2
builtin.h

@ -26,5 +26,7 @@ extern int cmd_count_objects(int argc, const char **argv, char **envp); @@ -26,5 +26,7 @@ extern int cmd_count_objects(int argc, const char **argv, char **envp);
extern int cmd_push(int argc, const char **argv, char **envp);
extern int cmd_grep(int argc, const char **argv, char **envp);
extern int cmd_add(int argc, const char **argv, char **envp);
extern int cmd_rev_list(int argc, const char **argv, char **envp);
extern int cmd_check_ref_format(int argc, const char **argv, char **envp);

#endif

17
check-ref-format.c

@ -1,17 +0,0 @@ @@ -1,17 +0,0 @@
/*
* GIT - The information manager from hell
*/

#include "cache.h"
#include "refs.h"

#include <stdio.h>

int main(int ac, char **av)
{
if (ac != 2)
usage("git-check-ref-format refname");
if (check_ref_format(av[1]))
exit(1);
return 0;
}

5
diff-tree.c

@ -138,7 +138,10 @@ int main(int argc, const char **argv) @@ -138,7 +138,10 @@ int main(int argc, const char **argv)
opt->diffopt.setup |= (DIFF_SETUP_USE_SIZE_CACHE |
DIFF_SETUP_USE_CACHE);
while (fgets(line, sizeof(line), stdin))
diff_tree_stdin(line);
if (line[0] == '\n')
fflush(stdout);
else
diff_tree_stdin(line);

return 0;
}

2
git.c

@ -52,6 +52,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp) @@ -52,6 +52,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp)
{ "diff", cmd_diff },
{ "grep", cmd_grep },
{ "add", cmd_add },
{ "rev-list", cmd_rev_list },
{ "check-ref-format", cmd_check_ref_format }
};
int i;


Loading…
Cancel
Save