Skip to content

startkup/tutorial-git

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

tutorial-git

  1. 下載專案下來
    git clone <url>
  2. 查看git狀態
    git status
  3. 放到暫存區
    git add .
    # 或者
    git add <檔案名>
  4. 確認修改
    git commit -m "修改的訊息"
  5. 查看紀錄
    git log
  6. 上傳到github
    git push origin master
  7. 取得最新版本
    git fetch
  8. 取得最新版本並且合併
    git pull origin master

程式碼 -> 暫存區 -> 確認修改

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published