Personal notes on working towards two different Github-accounts on the same machine.
One default ssh-key already exists: ~/.ssh/id_rsa
ssh-keygen -t rsa -C "[email protected]" -f "id_rsa_my_user"
pbcopy < ~/.ssh/id_rsa_my_user.pub
Personal notes on working towards two different Github-accounts on the same machine.
One default ssh-key already exists: ~/.ssh/id_rsa
ssh-keygen -t rsa -C "[email protected]" -f "id_rsa_my_user"
pbcopy < ~/.ssh/id_rsa_my_user.pub
public class MyThread extends Thread { | |
@Override | |
public void run() { | |
// Do background task | |
} | |
} |