Day 10 ~ 12:first time to use Git
posted at Mar 20, 2019

from Qiita:
10日目
First
what is Git
プログラムのソースコードなどの変更履歴を記録・追跡するための分散型バージョン管理システム
prepare to use Git
git init
共同開発の流れ
- コード変更
- 共有準備
- 共有
コマンド
共有する準備
# 共有したいファイルを選択
git add index.html
コミット
選択したファイルを記録する
# git commit -m "appropriate message"
git commit -m "Create index.html"
共有
リモートを登録
リモートとは、Git共有ファイルの置き場所で、originはリモート名のこと
git remote add origin URL名
push: リモートにファイルアップロード
git putsh origin mastaer
pull: リモート上のファイルをDL
git pull origin master
その他コマンド
git status # display changed files
git diff # displya changed codes diff
git log # display commit history
git log -p # diplay commit history and changed contents
11日目
Github上でリポジトリ作成

ローカルリポジトリ作成
echo "# self-repo" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/oriverk/self-repo.git
git push -u origin master
# =>
# Branch 'master' set up to track remote branch 'master' from 'origin'.
gitリモートの確認
git remote -v
# =>
# origin https://github.com/oriverk/self-repo.git (fetch)
# origin https://github.com/oriverk/self-repo.git (push)
git log
git log
# =>
# commit e2282c28ea661e588143201d9109ed9572f3d276 (HEAD -> master, origin/master)
# Author: oriverk <se.sterroristalqaeda@gmail.com>
# Date: Wed Mar 20 22:09:38 2019 +0000
自分でpushしてみる
touch tes1.txt
touch tes2.txt
git add tes1.txt
git add tes2.txt
git commit -m "second commit"
# =>
# [master 5b5b220] second commit
# 2 files changed, 0 insertions(+), 0 deletions(-)
# create mode 100644 tes1.txt
# create mode 100644 tes2.txt
git log
# =>
# commit 5b5b220fce07f6772b9aeeca1fe60d9ba0e63c74 (HEAD -> master)
# Author: oriverk <se.sterroristalqaeda@gmail.com>
# Date: Wed Mar 20 22:25:49 2019 +0000
# second commit
git push origin master
# =>
# Counting objects: 3, done.
# Compressing objects: 100% (2/2), done.
# Writing objects: 100% (3/3), 283 bytes | 141.00 KiB/s, done.
# Total 3 (delta 0), reused 0 (delta 0)
# To https://github.com/oriverk/self-repo.git
# e2282c2..5b5b220 master -> master

interactive mode
対話モードの呼び出し
git add -i # interactive mode
# =>
# 1: status 2: update 3: revert 4: add untracked
# 5: patch 6: diff 7: quit 8: help
更新分をステージ
git add -i
# select no5( patch ) and then select index.txt
# => diplay diff
# githubに反映
git commit -m "cat pass"
git push origin master
ファイルを戻す
rm tes1.txt
# let file go back to previous ver.
git checkout tes1.txt
# let file go back to specific ver. file
git log
# commit 5b5b220fce07f6772b9aeeca1fe60d9ba0e63c74
# Author: oriverk <se.sterroristalqaeda@gmail.com>
# Date: Wed Mar 20 22:25:49 2019 +0000
# let file go back to the "second commit" ver. tes1.txt
git checkout 5b5b220fce07f6772b9aeeca1fe60d9ba0e63c7 tes1.txt
# to the latest ver.
git reset --hard HEAD
# =>
# HEAD is now at 48bfffa cat pass
# 最新版なので、tes1.txtも"cat pass"のバージョンに戻ってる
ブランチの確認、作成
現在のブランチを確認
git branch -v
# =>
# master 48bfffa cat pass
新規のブランチ作成
git switch -c other-bran
edit file and then push to other-bran
cat /etc/mysql/conf.d/mysql.cnf >> tes1.txt
cat /etc/apache2/conf-available/javascript-common.conf >> tes2.txt
cat /etc/passwd >> tes3.txt
cat /etc/nsswitch.conf >> tes4.txt
git commit -m :"for other-bran"
git push origin other-bran
リモートの変更をローカルに反映
# masterブランチに移動
git checkout master
# 反映
git pull origin master
認証情報の追加
push時に毎回パスワ等聞かれるので、作成する
git config --global --edit
# ユーザ名とメールを記入し、コメントイン
sshのkeyを作成
既に授業で作成したので、実行はパス
ssh-keygen -t rsa -b 4096 -C "自分のemail@gmail.com"
cat ~/.ssh/id_rsa.pub
リポジトリのSetting内のDeployKeysに上のcatの結果をコピペ
これで、pushを、パスワ等を聞かれずに実行できる。
12日目
ブランチの確認
# 現在のブランチを確認
git branch -l
# 実行
master
* new-branch-jaji
# 現在のブランチとその情報を確認
git branch -v
# 実行
master 50dc6c7 added
* new-branch-joji be070c0 他のフィアルを追加
# リモートを含む、ブランチを確認
git fetch
git branch -a
# =>
# vagrant@vagrant:~/cebu_lessons/mactan-repo$ git branch -a
# master
# * new-branch-joji
# remotes/origin/master
# remotes/origin/new-branch-joji
# remotes/origin/test-repo
git fetch
リモートブランチの最新の履歴だけを取得
これをした状態でgit mergeをすると、git pullと同じ履歴になる
git pull = git fetch + git pull