git/extensions.st
author Jan Vrany <jan.vrany@labware.com>
Wed, 06 Oct 2021 12:07:04 +0100
changeset 932 fa801680bb02
parent 864 c854577212b8
permissions -rw-r--r--
Make use of original working copy the default Also use shared working copy if original working copy cannot be used. These two options has been used (by JV) for more than a year and seem to work fine.

"{ 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$'
! !