The [pull] Command
Fetch from and integrate with another repository or a local branch
Usage
libra pull [REPOSITORY] [REFSPEC]
Arguments
[REPOSITORY]
- Repository to fetch from[REFSPEC]
- Refspec to fetch, usually a branch name
Description
pull
incorporates changes from a remote repository into the current branch. In its default mode, pull
is shorthand for fetch
followed by merge FETCH_HEAD
. refs fetch docs for more information.
Options
-h
,--help
Print help
Note:
Simple usage is same as git-pull. Refs https://git-scm.com/docs/git-pull for more information.