Wolfram Language
Paclet Repository
Community-contributed installable additions to the Wolfram Language
Primary Navigation
Categories
Cloud & Deployment
Core Language & Structure
Data Manipulation & Analysis
Engineering Data & Computation
External Interfaces & Connections
Financial Data & Computation
Geographic Data & Computation
Geometry
Graphs & Networks
Higher Mathematical Computation
Images
Knowledge Representation & Natural Language
Machine Learning
Notebook Documents & Presentation
Scientific and Medical Data & Computation
Social, Cultural & Linguistic Data
Strings & Text
Symbolic & Numeric Computation
System Operation & Setup
Time-Related Computation
User Interface Construction
Visualization & Graphics
Random Paclet
Alphabetical List
Using Paclets
Create a Paclet
Get Started
Download Definition Notebook
Learn More about
Wolfram Language
GitLink
Guides
Git Interfaces
GitLink
Git Reference Operations
Low Level Git Operations
Symbols
GitAdd
GitAddRemote
GitAheadBehind
GitBranchQ
GitCheckoutReference
GitClone
GitClose
GitCommit
GitCommitQ
GitCreateBranch
GitCreateTag
GitDeleteBranch
GitDeleteRemote
GitDeleteTag
GitExpandTree
GitFetch
GitInit
GitMergeBase
GitMerge
GitMoveBranch
GitObject
GitOpen
GitProperties
GitPull
GitRange
GitReadBlob
GitRemoteQ
GitRepo
GitRepoQ
GitRepos
GitReset
GitSetUpstreamBranch
GitSHA
GitSignature
GitStatus
GitType
GitUpstreamBranch
GitWriteBlob
GitWriteTree
ToGitObject
Wolfram`GitLink`
G
i
t
C
r
e
a
t
e
T
a
g
G
i
t
C
r
e
a
t
e
T
a
g
[
r
e
p
o
,
t
a
g
]
c
r
e
a
t
e
s
a
t
a
g
w
i
t
h
t
h
e
g
i
v
e
n
n
a
m
e
o
n
t
h
e
H
E
A
D
c
o
m
m
i
t
o
f
r
e
p
o
.
G
i
t
C
r
e
a
t
e
T
a
g
[
r
e
p
o
,
t
a
g
,
r
e
f
]
c
r
e
a
t
e
s
a
t
a
g
p
o
s
i
t
i
o
n
e
d
a
t
r
e
f
,
w
h
i
c
h
m
a
y
b
e
a
n
y
v
a
l
i
d
g
i
t
r
e
f
e
r
e
n
c
e
o
r
S
H
A
.
G
i
t
C
r
e
a
t
e
T
a
g
[
r
e
p
o
,
t
a
g
,
r
e
f
,
m
e
s
s
a
g
e
]
c
r
e
a
t
e
s
a
n
a
n
n
o
t
a
t
e
d
t
a
g
w
i
t
h
t
h
e
c
o
m
m
i
t
l
o
g
m
e
s
s
a
g
e
.
D
e
t
a
i
l
s
▪
G
i
t
C
r
e
a
t
e
T
a
g
returns a
G
i
t
O
b
j
e
c
t
representing the tag if it succeeds and
$
F
a
i
l
e
d
otherwise.
▪
Unless
m
e
s
s
a
g
e
is specified,
G
i
t
C
r
e
a
t
e
T
a
g
creates a lightweight tag which leaves no record of who created the tag or when. When creating a lightweight tag, the return value will be the
G
i
t
O
b
j
e
c
t
of the commit pointed to by the tag.
▪
When
m
e
s
s
a
g
e
is given, an annotated tag object is created which includes the log message and committer information. The return value will be a
G
i
t
O
b
j
e
c
t
representing the tag object itself.
▪
G
i
t
C
r
e
a
t
e
T
a
g
takes the following options:
"
F
o
r
c
e
"
F
a
l
s
e
w
h
e
t
h
e
r
t
o
o
v
e
r
w
r
i
t
e
a
n
e
x
i
s
t
i
n
g
t
a
g
w
i
t
h
t
h
e
s
a
m
e
n
a
m
e
w
h
i
c
h
m
a
y
b
e
p
o
i
n
t
i
n
g
e
l
s
e
w
h
e
r
e
"
S
i
g
n
a
t
u
r
e
"
A
u
t
o
m
a
t
i
c
s
i
g
n
a
t
u
r
e
t
o
u
s
e
f
o
r
a
n
a
n
n
o
t
a
t
e
d
t
a
g
▪
A lightweight tag must point to a commit. An annotated tag may point to any
G
i
t
O
b
j
e
c
t
.
S
e
e
A
l
s
o
G
i
t
D
e
l
e
t
e
T
a
g
▪
G
i
t
C
r
e
a
t
e
B
r
a
n
c
h
"
"