Git

下载地址

Git 代理

1
2
3
4
5
6
7
8
9
10
11
12
# http
git config --global http.proxy http://127.0.0.1:7890
# https
git config --global https.proxy https://127.0.0.1:7890
# socks5
git config --global http.proxy socks5://192.168.0.1:1080
git config --global https.proxy socks5://192.168.0.1:1080
# 取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
# 只对github仓库走代理,其他不走代理,加上github.com,如
git config --global http://github.com.proxy http://192.168.0.1:1080

Git 操作

1. 解决每次涉及账户的操作都需要输密码的问题

  1. 保存账号密码:项目目录下输入git config --global credential.helper store, 之后在需要输入账号密码的时候输入一次账号密码就可以了,账号密码会被保存起来。
  2. 设置密钥:

2. 首次提交

1
2
3
4
5
6
7
8
9
10
11
git init
git add README.md
git commit -m "first commit"
# 重命名分支
git branch -M main
# 添加远程地址
git remote add origin https://github.com/umino-natsusou/demo.git
# 首次提交要加 -u
git push -u origin main
# 或者如下。-f表示远程仓库的修改将会被删除
git push -u origin main -f

3. 远程仓库地址设置

1
2
3
4
5
6
7
8
# 查看远程仓库地址
git remote -v

# 添加远程仓库地址
git remote add origin <地址>

# 更改远程仓库地址
git remote set-url origin <新地址>