git提交代码至远程仓库

时间:2024-03-15 10:27:54

一、创建gitHub账号

网址:https://github.com/

git提交代码至远程仓库

二、登陆github账户

git提交代码至远程仓库

按照步骤一注册后的账户密码进行登陆

 git提交代码至远程仓库

git提交代码至远程仓库

git提交代码至远程仓库github项目 创建成功

三、配置git

1、git工具下载网址:https://git-scm.com/downloads/ 

2、安装

3、配置git

      3.1、找到Git/usr/bin目录下的ssh-******.exe ,复制路径

     3.2、 打开:我的电脑 > 属性 > 高级系统设置 > 环境变量 > 系统变量 > path

git提交代码至远程仓库

3.3、将ssh-******.exe的路径进行配置  

git提交代码至远程仓库

4、创建本地SSH**

4.1、打开cmd,输入命令:ssh-****** -t rsa -C(大写的C)  "[email protected](你注册github时的邮箱地址)"   

git提交代码至远程仓库

4.2、 去ssh保存地址,找到 id_rsa.pub,打开文件,即可看到SSH**

4.3、复制key值,返回github界面

git提交代码至远程仓库

 git提交代码至远程仓库

git提交代码至远程仓库

4.4、验证是否成功

         点击gui bash,输入 ssh -T [email protected]

git提交代码至远程仓库

四、上传代码至git远程仓库

1、将远程代码下载到本地

     新建文件夹,右键点击Git Bash here ,输入命令 git clone + git仓库地址

git提交代码至远程仓库

 2、查看当前工作目录树的工作修改状态

       命令: git status

  状态:
(1):Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参与版本控制. 通过git add 状态变为Staged.
(2):Modified: 文件已修改, 仅仅是修改, 并没有进行其他的操作.
(3):deleted: 文件已删除,本地删除,服务器上还没有删除.

git提交代码至远程仓库

3、提交代码至缓存

命令 : git add .   (注意 add 后面有个“.”,表示提交所有文件)

git提交代码至远程仓库

注:(1) git add +文件路径

         (2) git  add -u +文件路径(将修改过且被跟踪的代码提交缓存)

         (3) git add -A +文件路径 (将修改过且未被跟踪的代码提交缓存)

4、提交代码至本地仓库

     命令:git commit -m "注释"

git提交代码至远程仓库

     5、提交至服务器

     命令:  git push

     git提交代码至远程仓库

提交过程中会让你输入github的登陆名和密码,正确输入即可

git提交代码至远程仓库

 

git提交代码至远程仓库

上传完成