mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
56 lines
1.3 KiB
Groff
56 lines
1.3 KiB
Groff
.\" generated with Ronn-NG/v0.10.1
|
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
.TH "GIT\-SYNC" "1" "March 2026" "" "Git Extras"
|
|
.SH "NAME"
|
|
\fBgit\-sync\fR \- Sync local branch with remote branch
|
|
.SH "SYNOPSIS"
|
|
\fBgit sync\fR [\-\-soft] [\-\-force] [ <remote> <branch> ]
|
|
.SH "DESCRIPTION"
|
|
Sync local branch with <remote>/<branch>\.
|
|
.P
|
|
When <remote> and <branch> are not specified on the command line, upstream of local branch will be used by default\.
|
|
.P
|
|
Tracked changes will be reset, and untracked files and directories will be removed unless you add \-s(\-\-soft)\.
|
|
.SH "OPTIONS"
|
|
\-\-soft or \-s
|
|
.P
|
|
Add this flag if you want to preserve untracked files and directories\.
|
|
.P
|
|
\-\-force or \-f
|
|
.P
|
|
Add this flag to disable interaction\.
|
|
.SH "EXAMPLES"
|
|
Sync local branch with its upstream
|
|
.IP "" 4
|
|
.nf
|
|
$ git sync
|
|
.fi
|
|
.IP "" 0
|
|
.P
|
|
Sync local branch with origin/master
|
|
.IP "" 4
|
|
.nf
|
|
$ git sync origin master
|
|
.fi
|
|
.IP "" 0
|
|
.P
|
|
Sync without cleaning untracked files:
|
|
.IP "" 4
|
|
.nf
|
|
$ git sync \-s origin master
|
|
.fi
|
|
.IP "" 0
|
|
.P
|
|
Sync without interaction:
|
|
.IP "" 4
|
|
.nf
|
|
$ git sync \-f
|
|
.fi
|
|
.IP "" 0
|
|
.SH "AUTHOR"
|
|
Written by Takuma Yamaguchi <\fIkumon0587@gmail\.com\fR>
|
|
.SH "REPORTING BUGS"
|
|
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
|
|
.SH "SEE ALSO"
|
|
<\fIhttps://github\.com/tj/git\-extras\fR>
|