Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ git init
- $ wget -O page.html https://example.com/
- $ git add page.html
- $ git commit -a -m "w0"
- $ git checkout -b ebook
- $ sed -ie 's/http:/https:/' page.html
- $ git commit -a -m "e1"
- $ git checkout master
- $ git merge ebook
- $ wget -O - https://example.com/ | sed -e 's/may/may not/' > page.html
- $ git commit -a -m w1
- $ git checkout ebook
- $ git merge master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement