Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. $ git init
  2. $ wget -O page.html https://example.com/
  3. $ git add page.html
  4. $ git commit -a -m "w0"
  5. $ git checkout -b ebook
  6. $ sed -ie 's/http:/https:/' page.html
  7. $ git commit -a -m "e1"
  8. $ git checkout master
  9. $ git merge ebook
  10. $ wget -O - https://example.com/ | sed -e 's/may/may not/' > page.html
  11. $ git commit -a -m w1
  12. $ git checkout ebook
  13. $ git merge master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement