X

Git 初學筆記 - 實作測試

Git 指令操作可見: Git 初學筆記 - 指令操作

此篇主要是把實作測試做個紀錄, 進階操作等有使用時再另外記錄.

Git 建立 Local Repository

  1. $ mkdir project; cd project
  2. $ git init
  3. $ echo "hello" > hello.txt
  4. $ git add .
  5. $ git commit -m 'initial'

Git clone 資料, 資料修改後上傳

  1. $ git clone http://git.example.com/project.git
  2. $ cd project
  3. $ touch new_file.txt
  4. $ git add .
  5. $ git commit -m 'add new_file.txt'
  6. $ git push origin master
  7. $ git pull # 拉看看有沒有更新

Git clone 資料, 資料修改後上傳.(分兩個目錄測試)

  1. $ mkdir /tmp/a /tmp/b
  2. $ cd /tmp/a
  3. $ git clone http://example.com/project_name.git
  4. $ cd /tmp/b
  5. $ git clone http://example.com/project_name.git
  6. $ echo "hello" > hello.html
  7. $ git add hello.html
  8. $ git commit -m 'add hello.html' # local commit.
  9. $ git push # 推到 Server 上.
  10. $ cd /tmp/a
  11. $ git pull # 會看到 hello.html

Local Repository

建立 Local Repository 測試
  1. $ mkdir test; cd test
  2. $ git init
建立新的 branch (new-branch), 並於 branch 去新增檔案
  1. $ git branch new-branch # master
  2. $ git branch # master
    * master
    new-branch
  3. $ git checkout new-branch # 切換到新的 branch
  4. $ git branch # new-branch
    master
    * new-branch
測試 Git staging area (git add . 之後的修改, 不會被 commit 進去)
  1. $ touch new-branch_file.txt # new-branch
  2. $ git add . # new-branch
  3. $ echo "contents." > new-branch_file.txt # new-branch
  4. $ git commit # new-branch, commit 的 new-branch_file.txt 會是空的, 因為修改是在 git add . 之後.
修改過的資料, 不要 commit, 想直接切換到 master(使用 Git stash 將修改紀錄暫存, 將目前 new-branch 的資料 merge 到 mastermaster)
  1. $ git status # new-branch, 會顯示 new-branch_file.txt 有修改, 尚未 commit.
  2. $ git checkout master # new-branch, 切換回 master, 會出現錯誤: "You have local changes"
  3. $ git stash # new-branch, 先把修改的先暫存下來, 先不 commit, 之後取出可用 git stash pop 或 git stash apply
  4. $ git status # new-branch, 會顯示 nothing to commit (暫時先不丟進 commit 裡面)
  5. $ git checkout master # master
  6. $ git merge new-branch # master, 會將 new-branch_file.txt 的空檔案合併進來.
Git 於 master 將檔案砍掉, branch 是否還能存取此檔案.
  1. $ ls # master, master_file.txt, new-branch_file.txt
  2. $ rm new-branch_file.txt # master, 刪掉此檔案
  3. $ git checkout new-branch # master, 切換到 new-branch, 會出現錯誤: "pathspec 'branch' did not match any file(s) known to git."
  4. $ git stash # 先把修改的部份存起來 (砍掉 new-branch_file.txt)
  5. $ ls # master, 此時 new-branch_file.txt 出現了. (因為尚未 commit, stash 的動作並未做寫入)
  6. $ git stash pop # master, 回復剛剛砍掉的狀態, new-branch_file.txt 就消失了.
  7. $ git commit -m 'delete new-branch_file.txt in master' -a # 先砍掉.
切換到 Branch, 去跟 master 做 Merge
  1. $ git checkout new-branch
  2. $ git stash pop # new-branch
  3. $ git merge master # new-branch, 錯誤: "Entry 'new-branch_file.txt' not uptodate. Cannot merge.", 因為檔案有修改.
  4. $ git diff master # 與 master 做 diff, 發現 /dev/null vs file, 所以要把此檔案砍掉.
  5. $ rm new-branch_file.txt
  6. $ git merge master # new-branch, 合併完成
  7. $ ls # new-branch, 只剩 master_file.txt 這個檔案
由 branch(new-branch) 環境 和 Master 分別建立 新的 branch (from-branch, from-master), 並測試未 commit 資料狀況, 新 branch 的狀態.
  1. $ touch new-branch_file.txt # new-branch, 測試未 commit 資料狀況, 新 branch 的狀態.
  2. $ git branch from-branch new-branch # new-branch, 會將 new-branch 目前所有狀態和資料都複製過去
  3. $ git checkout from-branch # from-branch
  4. $ git status # from-branch, 會看到 new-branch_file.txt, 且這個檔案尚未 commit.
  5. $ git branch from-master master # from-branch, 依照 master 開 from-master 的 branch
  6. $ git branch # from-branch
    from-branch
    from-master
    master
    * new-branch
  7. $ git branch -d from-master # from-branch, 砍掉 from-master 的 branch
  8. $ git checkout -b from-master master # from-branch, 建立 from-master 的 branch, 並同時切換過去.
  9. $ git branch # from-master
    from-branch
    * from-master
    master
    new-branch
測試由 Repository 還原檔案內容
  1. $ echo "test" > master_file.txt
  2. $ git checkout master_file.txt # 還原回空檔案 (Repository 的版本是 空檔案)
git pull 出現 error: Entry 'filename' not uptodate. Cannot merge. 解法
  1. git stash # 目前目錄有修改的資料, 先丟進暫存區
  2. git pull # 合併拉下來的修改
  3. git stash pop # 將修改的暫存區資料取出
  4. 去看 unmerge 的部份, 修改完成 commit + push 即可.

Remote Repository 測試

建立 local 端 master
  1. $ mkdir /tmp/a /tmp/b
  2. $ cd /tmp/a
  3. $ git clone http://git.example.com/project.git
  4. $ cd project/
  5. $ touch master-file
  6. $ git add .
  7. $ git commit -m 'add master-file'
  8. $ git push origin master
  9. $ git pull
  10. $ cd /tmp/b # 由此處來建立 branch
  11. $ git clone http://git.example.com/project.git
建立 Remote Repository 的 branch
  1. $ git pull
  2. $ git push origin origin:refs/heads/reps-branch
  3. $ git fetch origin # 更新到最新版本(origin 是 Repository 的版本)
  4. $ git branch -r
  5. $ git checkout --track -b reps-branch origin/reps-branch # 抓取 reps-branch, 並將此 branch 建立於 local 的 reps-branch
  6. $ git pull
  7. $ git branch
    * reps-branch
    master

測試

A 操作, 新增一個檔案, commit 進入 reps-branch, 於 reps-branch commit
  1. $ cd /tmp/a/project
  2. $ git pull
  3. $ git push origin origin:refs/heads/reps-branch
  4. $ git fetch origin
  5. $ git branch -r
  6. $ git checkout --track -b reps-branch origin/reps-branch # 抓取 reps-branch, 並將此 branch 建立於 local 的 reps-branch
  7. $ git pull
  8. $ git branch
    * reps-branch
    master
  9. $ touch reps-branch.txt
  10. $ git add reps-branch.txt
  11. $ git commit -m 'add reps-branch.txt'
  12. $ git push
  13. $ git pull
B 抓取 reps-branch, 並修改資料, 再抓取 reps 的 branch
  1. $ cd /tmp/b/project
  2. $ git clone http://git.example.com/project.git
  3. $ cd project
  4. $ git fetch origin
  5. $ git pull
  6. $ git checkout --track -b reps-branch origin/reps-branch # 丟到 reps-branch 去
  7. $ vim reps-branch.txt # 隨便加些內容
  8. $ git add reps-branch.txt
  9. $ git commit -m 'add some content'
  10. $ git push
  11. $ git pull
A 操作, 更新, 會抓到 B commit 的資料(於 reps-branch)
  1. $ cd /tmp/a/project
  2. $ git pull # 更新 reps-branch.txt 內的資料(B commit 的)

相關網頁

Tsung: 對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.
Related Post