皆さんGithub使ってますか?
先日久しぶりにGithubを使用しようとしたところ、コマンドを一部忘れてしまっていた為、また忘れたとき用に備忘録を作りたいと思います。
Gitをインストールします
$ sudo apt-get install git
Gitの初期設定
$ git config --global user.name "Your Name"
$ git config --global user.email "youremail@example.com"
ローカルリポジトリの作成
$ mkdir myproject
$ cd myproject
$ git init
リモートリポジトリを追加
$ git remote add origin https://github.com/username/myproject.git
ファイルの追加
ここではREADME.mdをサンプルとして使用します。
$ echo "Hello World" > README.md
$ git add README.md
コミット
$ git commit -m "Initial commit"
プッシュ
$ git push -u origin master
GitHubリポジトリのクローン
$ git clone https://github.com/username/myproject.git