Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
8a691dfd
Commit
8a691dfd
authored
Nov 08, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/git-howto: expand format-patch and send-email notes.
parent
83daced0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
git-howto.txt
doc/git-howto.txt
+15
-2
No files found.
doc/git-howto.txt
View file @
8a691dfd
...
@@ -205,8 +205,19 @@ I. BASICS:
...
@@ -205,8 +205,19 @@ I. BASICS:
git format-patch <commit> [-o directory]
git format-patch <commit> [-o directory]
will generate a set of patches out of the current branch starting from
will generate a set of patches for each commit between <commit> and
commit. By default the patches are created in the current directory.
current HEAD. E.g.
git format-patch origin/master
will generate patches for all commits on current branch which are not
present in upstream.
A useful shortcut is also
git format-patch -n
which will generate patches from last n commits.
By default the patches are created in the current directory.
11. Sending patches for review
11. Sending patches for review
...
@@ -215,6 +226,8 @@ I. BASICS:
...
@@ -215,6 +226,8 @@ I. BASICS:
will send the patches created by git format-patch or directly generates
will send the patches created by git format-patch or directly generates
them. All the email fields can be configured in the global/local
them. All the email fields can be configured in the global/local
configuration or overridden by command line.
configuration or overridden by command line.
Note that this tool must often be installed separately (e.g. git-email
package on Debian-based distros).
12. Pushing changes to remote trees
12. Pushing changes to remote trees
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment