Git - GitHub - Collaborating with Git - Part Ⅰ: Remote Work - clone
Head First Git: A Learner’s Guide to Understanding Git from the Inside Out、 Raju Gandhi(著)、 O’Reilly Mediaの Chapter 5.(Collaborating with Git - Part Ⅰ: Remote Work)、EXERCISE(354/680)の解答を求めてみる。
入出力結果(Terminal, Zsh)
% git clone https://github.com/kamimura/working-with-remotes.git
Cloning into 'working-with-remotes'...
remote: Enumerating objects: 6, done.
remote: Total 6 (delta 0), reused 0 (delta 0), pack-reused 6 (from 1)
Receiving objects: 100% (6/6), done.
% cd working-with-remotes
working-with-remotes % ls
README.md master-01.md
working-with-remotes % git branch
* master
working-with-remotes % git log --graph --oneline --all
* 5aefc0d (HEAD -> master, origin/master, origin/HEAD) add master-01 file
* f9fd4aa add README
working-with-remotes %
commit graph