常用操作 · 1月 10, 2022 0

Git常用操作

内容纲要

常用托管平台

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

git常用操作

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

设置代理

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

[user]
    email = myemail@gmail.com
    name = Terry chan
;[http]
;   proxy = http://127.0.0.1:38573
;[https]
;   proxy = http://127.0.0.1:38573
[core]
    autocrlf = input
%d 博主赞过: