計算機科学のブログ

ほしい物リスト

Git - Undoing: Fixing Your Mistakes - diff command, commit id

Head First Git: A Learner’s Guide to Understanding Git from the Inside OutRaju Gandhi(著)、 O’Reilly Mediaの Chapter 4.(Undoing: Fixing Your Mistakes)、EXERCISE(312/715)の解答を求めてみる。

入出力結果(Terminal, Zsh)

% git log --oneline --all --graph 
* 39107a6 (HEAD -> boardgame-night) add games and list potential boardgame night venues
* 3e3e847 initial boardgame planning
| * cf5e718 (glamping-trip) initial outdoors plan
|/  
* 8d704f8 (main) first cut at invitation card
* 6e16680 initial set of guests and gift registry
% git diff 3e3e847 39107a6
diff --git a/boardgame-venues.md b/boardgame-venues.md
new file mode 100644
index 0000000..c3684a0
--- /dev/null
+++ b/boardgame-venues.md
@@ -0,0 +1,6 @@
+# A list of potential game-cafe venues for board-game night
+
+- Winner's Game Cafe 
+- Rogues and Rangers Tavern 
+- Natural 20 Games & Coffee
+- Bottleship Gaming Bar
diff --git a/indoor-party.md b/indoor-party.md
index 2064ec5..6ca6def 100644
--- a/indoor-party.md
+++ b/indoor-party.md
@@ -16,5 +16,6 @@ Here are just a few of the games we can play:
 * Exploding Kittens
 
 Feel free to bring your favorite games.
+Venue decision will probably happen at the roll of a 20-sided die!
 
 And remember, as long as we are together, we're all winners.
%