$ sudo apt install git
$ git config --global user.name ユーザ名 $ git config --global user.email メールアドレス
$ cd sample_dir $ git init
$ git add hoge.c # ファイル名を一つずつ指定 $ git add -A # 最初に git init したディレクトリ以下全てのファイルを登録
$ git commit -m "First commit"
$ git remote add origin https://github.com/ユーザ/[作成したリポジトリ].git $ git push origin master Username for 'https://github.com': Password for 'https://***@github.com':
$ git config --global credential.helper 'store --file ~/.git_credentials'
$ git config --global credential.helper cache --timeout=2592000
$ git config --global credential.helper 'cache --timeout=86400'https://blog.katsubemakito.net/git/git-config-1st
$ git add -A $ git commit -m "Update" $ git push origin master
$ git clone https://github.com/ユーザ名/[作成したリポジトリ].git
$ git fetch $ git merge origin/master
$ git reset --hard origin/master
$ git clean -f
$ git branch -a