Git常用操作

Published on Aug. 22, 2023, 12:10 p.m.

常用托管平台

建议使用github,jetbrains.space可以自动同步到github。

git常用操作

# 常用操作
git add .
git commint -m "说明"
git pull
git push

设置代理

linux用户,位于用户目录.gitconfig

[user]
    email = [email protected]
    name = Terry chan
;[http]
;   proxy = http://127.0.0.1:38573
;[https]
;   proxy = http://127.0.0.1:38573
[core]
    autocrlf = input

Tags:

git