Git - Beginning Git: Get Going with Git - command, cd, pwd, ls, mkdir
Head First Git: A Learner’s Guide to Understanding Git from the Inside Out、 Raju Gandhi(著)、 O’Reilly Mediaの Chapter 1.(Beginning Git: Get Going with Git)、WHO DOES WHAT?(89/715)の解答を求めてみる。
cd | Changes directories. |
pwd | Displays the path of the cuurent directory. |
ls | Lists regular files in the cuurent directory. |
mkdir | Creates a new directory. |
ls -A | Lists all files in the current directory. |
cd .. | Navigates to the parent directory. |