Changes between Version 67 and Version 68 of FAQ
- Timestamp:
- Jul 21, 2011, 3:08:55 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v67 v68 145 145 === I want to submit a patch, how do I do this? === 146 146 147 * Follow these steps: 148 1. Set your credentials: 147 1. Set your credentials: 149 148 {{{ 150 149 $ git config user.name "Konstantin Kozlov" 151 150 $ git config user.email ... 152 151 }}} 153 152 2. When you commit your changes to your local copy put a meaningful message: 154 153 {{{ 155 154 $ git commit -a -m "commit message" 156 155 }}} 157 156 3. Then you can make the patch, e.g: 158 157 {{{ 159 158 $ git-format-patch HEAD~1