GitHubのFollowボタンをプロフィールに貼り付ける方法。
https://buttons.github.io/を開くと各種ボタンを作成することができる。

自分で所有するGitHubのリポジトリをローカルにcloneしてPushするまでの手順。
アクセス権限を設定する。
以下を追加。
Host github.com
HostName github.com
User git
Port 22
IdentityFile ~/.ssh/id_rsa_github
TCPKeepAlive yes
IdentitiesOnly yes
下記のコマンドを実行
ssh -T git@github.com
下記のメッセージが表示されればOK
Hi <アカウント名>! You've successfully authenticated, but GitHub does not provide shell access.
下記のようにコマンドを実行
git clone git@github.com:<アカウント名>/<リポジトリ名>.git
git config --global user.email "xxx@yyy.zzz"
git config --global user.name "hoge hoge"
ファイルを編集したら
git add .
git commit -m "message"
git push