莱因电博

Li-e.cn

Li Internet Electronic Blog
@rss

Git将本地仓库推送到远程仓库的简单说明

A simple step to push a local code repository to a remote repository.

————————————————————

* 适用于一般情况

1. 对于 git clone 的仓库

clone 到本地更新后,需要推送到服务器

  1. 添加项目文件

    git add .
    
  2. 添加描述

    git commit -m "更新/修改了什么"
    
  3. 推送到远端

    git push origin <分支>
    

    注:不要直接推送到 main 分支,后面确认没有问题再合并到 main 分支。

2. 对于新建仓库

先在服务器上新建仓库再执行推送

3. 常见问题

3.1 需要设置用户

git config --user.name "你的昵称"
git config --user.email "你的邮箱"
(C) 2019 - 2024 Li-e.cn莱因电博(立网电子博客) | Powered by Vercel , based on Hugo with Gists theme.