Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # Apply patch
  2.  
  3. By default:
  4. ```bash
  5. git apply my_diff.diff
  6. ```
  7.  
  8. If it does not apply, then:
  9. ```bash
  10. git apply --reject my_diff.diff
  11. ```
  12.  
  13. Git will create files \*.rej containing rejected revisions. They must be treated manually. Then run:
  14. ```bash
  15. git -am resolved
  16. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement