Gitを使う際には、変更の追跡、コミット、履歴の表示、リモートとの同期を行うコマンドの核となるセットが関わります。これらを理解することは基本的で、日常的な実践的知識です。
セットアップと開始
git init # create a new repository in the current directory
git clone <url> # copy a remote repository locally
git config --global user.name "Name" # set your identity (once)
git config --global user.email "[email protected]"
