版本控制最佳实践

来源:互联网 发布:事件提醒软件 编辑:程序博客网 时间:2024/06/08 05:29

提交相关的改动

常提交

不要提交只完成了一半的工作

在你提交前先测试代码

书写良好的提交信息

版本控制不是一个备份系统

使用分支

保持一致的工作流程

帮助和文档

在命令行获取帮助

$ git help <command>

免费的在线资源

http://www.git-tower.com/learn
http://rogerdudler.github.io/git-guide/
http://www.git-scm.org/

原文地址

https://www.git-tower.com/blog/git-cheat-sheet/

0 0