使用git工具将本地文件上传到github仓库
使用git工具将本地文件上传到github仓库
一、基本步骤
- 第一步:我们需要先创建一个本地仓库(文件夹)。
也可以通过
git clone https://github.com/xxx/xxx.git
克隆仓库到本地,则不需要git init
- 第二步:在命令行中输入
git init
把这个文件夹变成Git可管理的仓库- 然后通过
git add .
("."表示当前文件夹下所有内容都提交,也可以通过git add FileName/FolderName
提交指定的文件或文件夹)把文件添加到缓存区 - 然后可以通过
git status
命令,查看下现在的状态 - 然后,在使用命令
git commit -m "description"
把文件提交的本地仓库提交前可能需要设置git用户信息:
git config --global user.name "Yourname"
git config --global user.email "user@email.com"
如果没有--global
则表示信息仅对本仓库有效
- 然后通过
- 第三步:连接远程仓库
git remote add origin https://github.com/xxx/xxx.git
- 第四部:推送至仓库
git push
,推送至github仓库
二、基本代码流程
1. 设置git信息
- 安装git工具,步骤略
- 设置git用户信息(用户名、邮箱),代码如下:
- 其中,若不添加
--global
则表示仅对本仓库有效- 若不添加
--global
,则此命令在仓库git clone
后或git init
后输入- 若之前已经添加git用户信息,则忽略此步
git config --global user.name "Yourname"
git config --global user.email "user@email.com"
2. git仓库上传
方式一:
git init #把这个目录变成Git可以管理的仓库
git add README.md #文件添加到仓库
git add . #把当前目录下所有未追踪的文件全部add
git commit -m "commit description" #把文件提交到本地仓库
git remote add origin git https://github.com/xxx/xxx.git #关联远程仓库
git push -u origin main #把本地库的所有内容推送到远程库上
#按照提示输入github用户名和密码,其中密码不是登陆密码,需要设置
方式二:
git clone https://github.com/xxx/xxx.git #克隆远程仓库代码
git add . #将更改文件添加追踪
git commit -m "commit description" #将此次更改提交到本地仓库
git push #把本地库的所有内容推送到远程库上
#按照提示输入github用户名和密码,其中密码不是登陆密码,需要在Settings->developer settings->Personnal access tokens->Tokens(classic)->Generate new token
三、其他
1. 密码获取
登陆github,在主页以此点击下面:
Settings->developer settings->Personnal access tokens->Tokens(classic)->Generate new token->勾选repo项->生成token
然后将生成的token作为git上github登陆密码复制粘贴
2. 若不想每次push都输入用户密码:
则在下次输入密码前输入以下代码则可记住密码:
git config --global credential.helper store #不添加--global则仅对本仓库有效,建议不添加
需要删除记录的用户名和密码
git credential-manager uninstall