how-github.md

如何使用GitHub上传文件

上传文件的极简工作流程

git add . ——将所有更改过的文件添加到暂缓区

git commit -m ——将修改部分推送到本地仓库

git push—— 将本地仓库的更改推送到远程仓库(GitHub服务器)

上传文件的具体工作流程

1. 首先进入某一个特定的文件夹,如test, 然后使用git init创建git文件

2. 将文件添加到staging area,以便为下一次提交commit做准备

使用git add .推送所有的文件到本地仓库的暂缓区(staging area),或者使用git add **.cpp推送某个特定的文件到本地仓库的暂缓区(staging area)。
2

3. 输入本次的提交说明,提交更改到本地仓库

git commit -m "任意的提交信息"将提交更改到本地仓库
3

4. 关联GitHub仓库

GitHub中新建一个repository,复制仓库地址

4
5
6

在本地仓库中,使用git remote add命令将远程仓库链接到本地仓库

git remote add origin https://github.com/carrollpolo/test.git

5. 将本地仓库推送到GitHub服务器

git push将本地仓库更改推送到远程仓库

git push -u origin main

出现了下列问题,因为推送到了错误的分支(事实上,我的GitHub远程分支只有master)
7
我们可以使用git branch查看远程仓库的分支,避免推送失败

Author

Shang Lee

Posted on

2025-01-13

Updated on

2025-03-07

Licensed under

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.

Comments

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