mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
7 lines
173 B
Bash
7 lines
173 B
Bash
#!/bin/sh
|
|
|
|
ssh diveintomark.org "hg -R /home/mark/db/diveintopython3/ serve --stdio" &
|
|
pid=$!
|
|
hg push ssh://mark@diveintomark.org//home/mark/db/diveintopython3/
|
|
kill "$pid"
|