https://github.com/git/git
Revision 18eeb5a2650ef4d662f5c9bb888cac8694753ba5 authored by Junio C Hamano on 18 September 2019, 22:23:16 UTC, committed by Junio C Hamano on 18 September 2019, 22:23:16 UTC
* master:
  Third batch
  git-gui: add hotkey to toggle "Amend Last Commit"
  git-gui: add horizontal scrollbar to commit buffer
  git-gui: convert new/amend commit radiobutton to checkbutton
  git-gui: add hotkeys to set widget focus
  git-gui: allow undoing last revert
  git-gui: return early when patch fails to apply
  git-gui: allow reverting selected hunk
  git-gui: allow reverting selected lines
2 parent s 10702dd + 4c86140
Raw File
Tip revision: 18eeb5a2650ef4d662f5c9bb888cac8694753ba5 authored by Junio C Hamano on 18 September 2019, 22:23:16 UTC
Sync with master
Tip revision: 18eeb5a
reachable.h
#ifndef REACHEABLE_H
#define REACHEABLE_H

struct progress;
struct rev_info;

int add_unseen_recent_objects_to_traversal(struct rev_info *revs,
					   timestamp_t timestamp);
void mark_reachable_objects(struct rev_info *revs, int mark_reflog,
			    timestamp_t mark_recent, struct progress *);

#endif
back to top