start new:
tmux
start new with session name:
tmux new -s myname
dynu.com | |
dyn.com | |
no-ip.com / noip.com | |
changeip.com | |
afraid.org | |
duckdns.org | |
dnsdynamic.org | |
duiadns.net | |
myonlineportal.com | |
dns4e.com |
#!/bin/sh | |
# EDIT this | |
[email protected] | |
PASSWORD=yoursecret | |
DOMAIN=example.dnsd.me | |
IP=`curl --silent -k https://myip.dnsdynamic.com/` | |
curl --silent --user "$EMAIL:$PASSWORD" -k "https://www.dnsdynamic.org/api/?hostname=$DOMAIN&myip=$IP" |
If a project has to have multiple git repos (e.g. Bitbucket and Github) then it's better that they remain in sync.
Usually this would involve pushing each branch to each repo in turn, but actually Git allows pushing to multiple repos in one go.
If in doubt about what git is doing when you run these commands, just