如何通过Git Bash上传文件(大小不限)至Github仓库

1、在Github上新建仓库

点击绿色“new”按钮控件,在弹出窗口进行相应设置即可,新建完成后

如何通过Git Bash上传文件(大小不限)至Github仓库_第1张图片

2、下载 Git Bash

3、打开Git Bash,进入到待上传文件所在的文件夹位置(若之前上传与当前上传不是同一账号,请先输入 git init  !)

$ cd /d/study/computer/c_training/mapper
//D:\STUDY\Computer\C_training\Mapper

4、输入git clone 指令,结束后会发现系统在当前文件夹新建了一个名为“Mapper1.0”的文件夹,请将待上传文件移至该新建文件夹中

$ git clone https://github.com/HeyLoong/Mapper1.0 
//本人仓库名为Mapper1.0

5、输入cd指令,命令行尾部会出现(master)

$ cd Mapper1.0 //Mapper1.0 :系统所新建文件夹的名称

6、跟踪大文件,本人待上传文件名为“mapper1.0_app.zip”

$  git lfs track "mapper1.0_app.zip"//“mapper1.0_app.zip”为自己待上传文件

7、输入git add

$ git add "mapper1.0_app.zip"  //指定文件
或
$ git add .  //当前文件夹下的所有文件

8、添加注释

$ git commit -m "Welcome to download Mapper"
//如:Welcome to download Mapper

9.输入git push,输入后会提示输入自己Github账号密码信息,完成后会开始上传,上传时间会较长,请耐心等待

$ git config --global --unset https.proxy
$ git push origin master

如何通过Git Bash上传文件(大小不限)至Github仓库_第2张图片

你可能感兴趣的:(编译方法,bash)