2017-08-02发表2017-08-02更新团队协作 / git2 分钟读完 (大约277个字)git打标签背景1以develop分支某一时间点,打标签,加上发布内容,发布到git服务器。 切换分支1git check develop 更新代码1git pull origin develop 查看日志1git log阅读更多
2017-04-27发表2017-04-27更新团队协作 / git几秒读完 (大约57个字)git push免输入账号和密码创建文件,加入如下内容1234cd ~touch .git-credentialsvi .git-credentialshttps://{username}:{password}@{domain}{:port} 执行如下命令1git config --global credential.helper store 打开~/.gitconfig文件查看12[credential]helper = store