vcs

package
v0.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 9, 2015 License: MPL-2.0 Imports: 12 Imported by: 1

Documentation

Index

Constants

View Source
const (
	TOTAL_PREFIX = "total="
)

Variables

View Source
var ErrNoCommitTimeData = errors.New("Commit doesn't have any time data")
View Source
var ErrNoLocalTimeData = errors.New("Local clone doesn't have any time data")
View Source
var ErrNoRemoteTimeData = errors.New("Remote doesn't have any time data")
View Source
var PostCheckoutTmpl = template.Must(template.New("name").Parse(`#!/bin/sh
# when checkout is a branch, start timer
if [ $3 -eq 1 ]; then
   glass start;
fi
`))
View Source
var PostCommitTmpl = template.Must(template.New("name").Parse(`#!/bin/sh
#always reset after commit
glass lap --from-hook
`))
View Source
var PrePushTmpl = template.Must(template.New("name").Parse(`#!/bin/sh
#push time data
glass push $1 --from-hook
`))
View Source
var PrepCommitTmpl = template.Must(template.New("name").Parse(`#!/bin/sh
# only add time to template and message sources
# @see http://git-scm.com/docs/githooks#_prepare_commit_msg
case "$2" in
message|template) 
	printf "$(cat $1)$(glass status --time-only)" > "$1" ;;
esac
`))
View Source
var TimeSpentNotesRef = "time-spent"

Functions

This section is empty.

Types

type Git

type Git struct {
	// contains filtered or unexported fields
}

func NewGit

func NewGit(dir string) *Git

func (*Git) DefaultRemote

func (g *Git) DefaultRemote() string

func (*Git) Hook

func (g *Git) Hook() error

func (*Git) IsAvailable

func (g *Git) IsAvailable() bool

func (*Git) Name

func (g *Git) Name() string

func (*Git) Persist

func (g *Git) Persist(t time.Duration) error

func (*Git) Pull

func (g *Git) Pull(remote string) error

func (*Git) Push

func (g *Git) Push(remote string, refs string) error

func (*Git) Show

func (g *Git) Show(commit string) (TimeData, error)

type TimeData

type TimeData interface {
	Total() time.Duration
}

type VCS

type VCS interface {
	Name() string
	IsAvailable() bool
	Hook() error
	Push(string, string) error
	Pull(string) error
	DefaultRemote() string
	Persist(time.Duration) error
	Show(string) (TimeData, error)
}

func GetVCS

func GetVCS(dir string) (VCS, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL