Copyright Digital Equipment Corp. All rights reserved.

GIT

	Git is a fast, scalable, distributed revision control system with an
	unusually rich command set that provides both high-level operations
	and full access to internals.

	Usage:

		o To define the necessary VSI GIT symbols and set up the environment
		  for using Git commands, the user must execute the following script:
			$ @SYS$STARTUP:GIT$STARTUP.COM

		  or to ensure VSI GIT starts automatically, request the system
		  administrator to add the following line to SYS$MANAGER:SYLOGIN.COM:

			$ GITSTART := SYS$STARTUP:GIT$STARTUP.COM
			$ IF f$search("''GITSTART'") .NES. "" THEN @'GITSTART'

		o Make sure that the process parsing style is set with
		  SET PROCESS/PARSE_STYLE=EXTENDED when using VSI Git.

		o Before running Git commands that modify the working directory or
		  history (e.g., STASH, RESET, MERGE, CHECKOUT), ensure that only
		  one version of each file is available by purging older versions
		  if necessary.

		For more information please refer to: https://git-scm.com/docs/git.


Additional information available:

ADD             APPLY           BISECT          BLAME           BRANCH
CHERRY-PICK     CHECKOUT        CLEAN           CLONE           COMMIT
CONFIG          DESCRIBE        DIFF            FETCH           GREP
HELP            INIT            LOG             MERGE           MV
NOTES           PULL            PUSH            RANGE-DIFF      REBASE
RESET           RESTORE         REVERT          RM              SHORTLOG
SHOW            STASH           STATUS          SWITCH          TAG
VERSION         WORKTREE        Known_Issues