demo for git command
Go to file
2024-08-29 10:11:45 +08:00
readme.md 更新branch操作 2024-08-29 10:11:45 +08:00

readme.md

Git Command Demo

本地初始化及提交本地仓库

  1. git init
  2. git add *.c
  3. git commit -m "初始化项目版本"
  4. git log

推送改动到远程

  1. git remote add origin <远程地址> //仅一次
  2. git push origin master

分支操作

  1. 查看分支
    git branch
  2. 创建分支 git branch test
  3. 切换分支 git chekout test
  4. 创建并切换分支 git checkout -b test
  5. 提交分支 git push origin test
  6. 删除分支 git checkout master git branch -d test