git2r (version 0.10.1)

show,git_signature-method: Brief summary of signature

Description

Brief summary of signature

Usage

## S3 method for class 'git_signature':
show(object)

Arguments

object
The repository object

Value

  • None (invisible 'NULL').

Examples

Run this code
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)

## Create a user
config(repo, user.name="Alice", user.email="alice@example.org")

## Brief summary of default signature
default_signature(repo)

Run the code above in your browser using DataLab