git clone # From 远程 to 本地
git pull # From 远程 to 本地
git push # From 本地 to 远程
git commit # 保存
身份验证相关
# 当使用https和git远端仓库交互的时候,每次都需要输入用户名和密码。在服务器端或者本地pc输入如下解决问题:在第一次push或者pull后在本地生成一个文本存储相关信息。
git config --global credential.helper store
git clone # From 远程 to 本地
git pull # From 远程 to 本地
git push # From 本地 to 远程
git commit # 保存
# 当使用https和git远端仓库交互的时候,每次都需要输入用户名和密码。在服务器端或者本地pc输入如下解决问题:在第一次push或者pull后在本地生成一个文本存储相关信息。
git config --global credential.helper store