Revision 06de561830250f92e056b0a57bc52b27b13ba2ac authored by Junio C Hamano on 03 June 2012, 22:52:18 UTC, committed by Junio C Hamano on 03 June 2012, 22:52:18 UTC
When "git rebase" was given a bad commit to replay the history on,
its error message did not correctly give the command line argument
it had trouble parsing.

By Erik Faye-Lund
* ef/maint-rebase-error-message:
  rebase: report invalid commit correctly
2 parent s 6a6d72b + 9180fea
Raw File
bulk-checkin.h
/*
 * Copyright (c) 2011, Google Inc.
 */
#ifndef BULK_CHECKIN_H
#define BULK_CHECKIN_H

#include "cache.h"

extern int index_bulk_checkin(unsigned char sha1[],
			      int fd, size_t size, enum object_type type,
			      const char *path, unsigned flags);

extern void plug_bulk_checkin(void);
extern void unplug_bulk_checkin(void);

#endif
back to top