การทำงานกับ Git เกี่ยวข้องกับชุด commands หลักสำหรับติดตามการเปลี่ยนแปลง การ commit การดูประวัติ และการซิงค์กับ remotes การรู้คำสั่งเหล่านี้เป็นความรู้เชิงปฏิบัติพื้นฐานที่ใช้ทุกวัน
การตั้งค่าและการเริ่มต้น
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
