Git常用命令

初次创建仓库并提交代码

  1. 新建文件
1
echo "# naviPlayer" >> README.md
  1. 初始化本地仓库:

    1
    git init
  2. 记录本地新增文件:

    1
    git add README.md
  3. 将修改、新增文件提交到本地仓库:

    1
    git commit -m "first commit"
  4. 创建分支 main:

    1
    git branch -M main
  5. 关联远程仓库:

    1
    git remote add origin git@github.com:tux0529/naviPlayer.git
  6. 提交本地仓库到原程仓库:

    1
    git push -u origin main

Git更新提交到仓库

  1. 在本地修改相应文件(或者文件新旧替换)

  2. 记录新增文件、修改文件

    1
    git add (文件路径)
  3. 查看当前本地文件信息,查看是否还有文件未跟踪或是未添加到本地库:

    1
    git status
  4. 将修改、新增文件提交到本地仓库:

    1
    git commit -m "更改信息备注"
  5. 提交代码到当前分支

    1
    git push
作者

redtux

发布于

2024-12-05

更新于

2024-12-05

许可协议

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

评论

You forgot to set the shortname for Disqus. Please set it in _config.yml.