create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
public class SpaceItemDecoration extends RecyclerView.ItemDecoration { | |
private int space; | |
private boolean addSpaceFirstItem; | |
private boolean addSpaceLastItem; | |
public SpaceItemDecoration(int space) { | |
this(space, false, false); | |
} | |
public SpaceItemDecoration(int space, boolean addSpaceFirstItem, boolean addSpaceLastItem) { |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"