git/extensions.st
author Claus Gittinger <cg@exept.de>
Tue, 03 Jul 2018 09:41:20 +0200
branchcvs_MAIN
changeset 847 f0220e0cb843
parent 481 0cfef855baa2
child 864 c854577212b8
permissions -rw-r--r--
initial checkin

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

!Object methodsFor:'testing'!

isGitBlob
    ^false

    "Created: / 19-09-2012 / 13:56:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitCommit
    ^false

    "Created: / 19-09-2012 / 13:56:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitObject
    ^false

    "Created: / 19-09-2012 / 13:55:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitOid
    ^false

    "Created: / 19-09-2012 / 13:56:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitReference
    ^false

    "Created: / 02-10-2012 / 16:12:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitRepository
    ^false

    "Created: / 19-09-2012 / 13:56:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitTag
    ^false

    "Created: / 19-09-2012 / 13:56:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitTree
    ^false

    "Created: / 19-09-2012 / 13:56:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!Object methodsFor:'testing'!

isGitTreeish
    ^false

    "Created: / 19-09-2012 / 13:57:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!stx_libscm_git class methodsFor:'documentation'!

extensionsVersion_SVN
    ^ '$Id$'
! !