git基本使用流程

git基本使用流程

配置代理

1
2
3
4
5
6
7
8
9
10
11
#设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890

#取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

#查看git配置
git config --list
git config --global --list

https据说没用

克隆代码

1
git clone git@github.com:ShawayL/HexoBlog.git

拉取代码

1
git pull

添加暂存区

1
2
3
git add .
git add [file1] [file2] ...
git add [dir]

提交暂存区文件

1
git commit -m "message"

把本地提交推送到远程

1
git push

评论