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
P
u
l
l
G
i
t
P
u
l
l
[
r
e
p
o
]
p
u
l
l
s
c
h
a
n
g
e
s
f
r
o
m
t
h
e
d
e
f
a
u
l
t
u
p
s
t
r
e
a
m
b
r
a
n
c
h
i
n
t
o
y
o
u
r
c
u
r
r
e
n
t
b
r
a
n
c
h
.
G
i
t
P
u
l
l
[
r
e
p
o
,
r
e
m
o
t
e
]
f
e
t
c
h
e
s
t
h
e
c
h
a
n
g
e
s
f
r
o
m
r
e
m
o
t
e
,
t
h
e
n
p
u
l
l
s
c
h
a
n
g
e
s
f
r
o
m
t
h
e
d
e
f
a
u
l
t
u
p
s
t
r
e
a
m
b
r
a
n
c
h
.
G
i
t
P
u
l
l
[
r
e
p
o
,
r
e
m
o
t
e
,
b
r
a
n
c
h
]
f
e
t
c
h
e
s
t
h
e
c
h
a
n
g
e
s
f
r
o
m
r
e
m
o
t
e
a
n
d
m
e
r
g
e
'
s
r
e
m
o
t
e
'
s
v
e
r
s
i
o
n
o
f
b
r
a
n
c
h
i
n
t
o
y
o
u
r
c
u
r
r
e
n
t
b
r
a
n
c
h
.
D
e
t
a
i
l
s
▪
G
i
t
P
u
l
l
returns the
G
i
t
O
b
j
e
c
t
corresponding to the current HEAD commit if it succeeds, and a
F
a
i
l
u
r
e
object otherwise.
▪
If
r
e
p
o
is not on a branch configured with an upstream branch, then
G
i
t
P
u
l
l
will fail unless you specify the branch to pull from.
▪
If the upstream branch is a local branch, then
G
i
t
P
u
l
l
[
r
e
p
o
]
will merge changes from the upstream branch without fetching changes from any remote.
▪
G
i
t
P
u
l
l
[
r
e
p
o
,
r
e
m
o
t
e
,
b
r
a
n
c
h
]
is effectively equivalent to
G
i
t
F
e
t
c
h
[
r
e
p
o
,
r
e
m
o
t
e
]
followed by
G
i
t
M
e
r
g
e
[
r
e
p
o
,
S
t
r
i
n
g
J
o
i
n
[
r
e
m
o
t
e
,
"
/
"
,
b
r
a
n
c
h
]
]
.
▪
If
G
i
t
P
u
l
l
returns a
F
a
i
l
u
r
e
object, it may generate any of the tags associated with
F
a
i
l
u
r
e
objects for
G
i
t
F
e
t
c
h
,
G
i
t
M
e
r
g
e
or
G
i
t
R
e
b
a
s
e
, depending upon how the pull operation failed.
▪
If
N
o
n
e
is given for
r
e
m
o
t
e
, then the remote will be inferred from
b
r
a
n
c
h
. If
b
r
a
n
c
h
is not a remote branch, then
G
i
t
P
u
l
l
will not fetch from any remote, but it will still merge
b
r
a
n
c
h
into the current branch.
▪
If
b
r
a
n
c
h
contains a valid commit specification or
G
i
t
O
b
j
e
c
t
which is not a branch, then
G
i
t
P
u
l
l
will treat it as if it were a branch terminating at that commit.
S
e
e
A
l
s
o
G
i
t
P
u
s
h
▪
G
i
t
F
e
t
c
h
▪
G
i
t
M
e
r
g
e
▪
G
i
t
R
e
b
a
s
e
"
"