Git的基本操作

两种方法上传本地文件到github
1.github在线上传文件夹
github->仓库->update files->choose your files即可
缺陷:只能每次上传单个文件

  1. 通过git工具上传本地文件夹(本地项目)
    2.1 git bash:

$ git config --global user.name "liusir"
$ git config --global user.email "[email protected]"

2.2 设置SSH key,ssh是加密传输

首先检查是否已生成密钥cd ~/.ssh,如果返回的ls有3个文件,则密钥已经生成
cd~/.ssh

如果没有密钥,则通过
$ ssh-keygen -t rsa -C "[email protected]"
生成,生成过程中一路按3次回车键

2.3 为github账号配置ssh key

3 上传本地项目到github
上传仓库:
cd pandaliusir.githun.io
git add . //多试几次
git commit -m 'del'
git pull origin master
git bash操作
git --help

*克隆仓库:
cd d:
cd git //'git'文件夹为自己创建
git clone https://github.com/pandaliusir/pandaliusir.github.io.git

*上传仓库:
cd pandaliusir.githun.io
git add . //多试几次
git commit -m 'del'
git pull origin master

*删除文件夹(git):
cd d:
cd git
cd pandaliusir.github.io
git pull origin master //下载
dir
git rm -r --cached pic-sy //删除
git commit -m '文件夹' //确认
git push -u origin master

你可能感兴趣的:(Git的基本操作)