Changes between Version 61 and Version 62 of FAQ
- Timestamp:
- Jul 21, 2011, 10:42:48 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v61 v62 152 152 * '''Q: I want to submit a patch, how do I do this? 153 153 A: Follow these steps: 154 *Set your credentials:154 1. Set your credentials: 155 155 {{{ 156 156 $ git config user.name "Konstantin Kozlov" 157 157 $ git config user.email ... 158 158 }}} 159 *When you commit your changes to your local copy put a meaningful message:159 2. When you commit your changes to your local copy put a meaningful message: 160 160 {{{ 161 161 $ git commit -a -m "commit message" 162 162 }}} 163 *Then you can make the patch, e.g:163 3. Then you can make the patch, e.g: 164 164 {{{ 165 165 $ git-format-patch HEAD~1