git/GitResetType.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 05 Feb 2013 10:38:13 +0100
changeset 218 8d975bd9fe4f
parent 31 d96d7eff6efc
child 481 0cfef855baa2
permissions -rw-r--r--
Bugfix in HGPackageModelRegistry class>>flush: and pull command output parsing.

"{ Package: 'stx:libscm/git' }"

SharedPool subclass:#GitResetType
	instanceVariableNames:''
	classVariableNames:'RESET_SOFT RESET_MIXED'
	poolDictionaries:''
	category:'SCM-Git-Core-Internal-Constants'
!


!GitResetType class methodsFor:'initialization'!

initialize

    RESET_SOFT := 1.
    RESET_MIXED := 2.
! !

!GitResetType class methodsFor:'constants'!

RESET_MIXED

    ^RESET_MIXED
!

RESET_SOFT

    ^RESET_SOFT
! !

!GitResetType class methodsFor:'documentation'!

version_GIT
    "Never, ever change this method. Ask JV or CG why"
    ^thisContext method mclass theNonMetaclass instVarNamed: #revision
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !

GitResetType initialize!