git常用操作 2018/06/01 | 折腾 | justchen | 暂无评论 | 2693 views linux下保存密码 主要是针对http模式下的仓库避免每次都入密码 git config credential.helper store 创建分支 git checkout -b xxxx 相当于 git branch xxxx + git checkout xxxx 切换到分支 git checkout xxxx 提交分支 git p……