iT邦幫忙

2024 iThome 鐵人賽

DAY 25
0

git基本指令

基本指令

  1. 初始化 Git 倉庫

    git init
    
  2. 克隆遠程倉庫

    git clone <repository-url>
    
  3. 檢查當前狀態

    git status
    
  4. 添加更改到暫存區

    git add <file>         # 添加指定文件
    git add .              # 添加所有變更
    
  5. 提交更改

    git commit -m "commit message"
    
  6. 查看提交歷史

    git log
    

分支操作

  1. 創建新分支

    git branch <branch-name>
    
  2. 切換到指定分支

    git checkout <branch-name>
    
  3. 創建並切換到新分支

    git checkout -b <branch-name>
    
  4. 刪除分支

    git branch -d <branch-name>
    
  5. 合併分支

    git merge <branch-name>
    

遠程操作

  1. 查看遠程倉庫

    git remote -v
    
  2. 添加遠程倉庫

    git remote add <name> <repository-url>
    
  3. 推送到遠程倉庫

    git push <remote> <branch-name>
    
  4. 拉取遠程更改

    git pull <remote> <branch-name>
    

其他有用的指令

  1. 查看當前分支

    git branch
    
  2. 顯示變更的文件

    git diff
    
  3. 重置到某個提交

    git reset --hard <commit-id>
    
  4. 放棄暫存的更改

    git reset <file>
    

查看指令

最簡單明瞭的察看方法就是直接

git help

就會得到如下圖
截圖 2024-09-27 下午1.56.28

結論

今天跟大家分享常見的 Git 指令,能幫助你在版本控制中進行日常操作。如果大家對於git感興趣的話,可以點選以下連結喔
https://git-scm.com/docs


上一篇
專案推上github
下一篇
swift 藍芽-掃描與連接
系列文
Swift大航道-啟航篇30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言