oxlog

あれやこれや雑多なこと

GitHub に lg.c を登録してみる

GitHub への登録

github.com

リポジトリの作成

GitHub にログインし、リポジトリlg_codeを作成する

f:id:marupeke:20180525161345p:plain

コードの commit と push

$ cd lg_code
$ git init

$ git config --local user.name marupeke
$ git config --local user.email marupeke@gmail.com

$ git add README.md lg.c
$ git commit -m "first commit"
$ git remote add origin https://github.com/marupeke/lg_code.git
$ git push -u origin master

f:id:marupeke:20180525173516p:plain