Git的Hello World

前言 官網有豐富的文件,在這摘要一下: Git 也分安裝或已經編譯好的檔案,可按此下載。 檢查 Git 版本 git version 初始化 Git 項目 當決定用 Git 管理項目時,必需要對其進行初始化 git init 設定 Git 環境(非必要) 可以為 Git 設定用戶,電件等資訊 git config --global user.name "XXXX" git config --global user.email "[email protected]” 查看 config git config --list Clone 已有的資料庫(.git) git clone <repo url> 建立 Git 索引 為工作區(Workspace)內指定檔案建立索引 git add helloworld.txt 為工作區(Workspace)內所有檔案建立索引 git add . Commit 到本地資料庫 Commit 時可以使用-m 附加文字描述 git comit -m "your remark" 建立 branch 如 Commit 前沒有建立 branch,則自動建立一個以 main 命名的分支...

2022-01-18 · 1 min · Derek.K