You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SubmoduleStatusType.java 765B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) 2011, GitHub Inc. and others
  3. *
  4. * This program and the accompanying materials are made available under the
  5. * terms of the Eclipse Distribution License v. 1.0 which is available at
  6. * https://www.eclipse.org/org/documents/edl-v10.php.
  7. *
  8. * SPDX-License-Identifier: BSD-3-Clause
  9. */
  10. package org.eclipse.jgit.submodule;
  11. /**
  12. * Enumeration of different statuses that a submodule can be in
  13. */
  14. public enum SubmoduleStatusType {
  15. /** Submodule's configuration is missing */
  16. MISSING,
  17. /** Submodule's Git repository is not initialized */
  18. UNINITIALIZED,
  19. /** Submodule's Git repository is initialized */
  20. INITIALIZED,
  21. /**
  22. * Submodule commit checked out is different than the commit referenced in
  23. * the index tree
  24. */
  25. REV_CHECKED_OUT;
  26. }