├── .gitignore ├── .nojekyll ├── CNAME ├── README.md ├── _coverpage.md ├── _sidebar.md ├── assets └── images │ └── swe_at_google.2.cover.jpg ├── index.html └── zh-cn ├── Afterword.md ├── Chapter-10_Documentation └── Chapter-10_Documentatio.md ├── Chapter-11_Testing_Overview ├── Chapter-11_Testing_Overview.md └── images │ ├── image-20220407195517053.png │ ├── image-20220407195824423.png │ ├── image-20220407200232089.png │ ├── image-20220407200917862.png │ └── image-20220407201117705.png ├── Chapter-12_Unit_Testing └── Chapter-12_Unit_Testing.md ├── Chapter-13_Test_Doubles └── Chapter-13_Test_Doubles.md ├── Chapter-14_Larger_Testing ├── Chapter-14_Larger_Testing.md └── images │ ├── Figure 14-1.png │ ├── Figure 14-2.png │ ├── Figure 14-3.png │ ├── Figure 14-4.png │ ├── Figure 14-5.png │ └── Figure 14-6.png ├── Chapter-15_Deprecation └── Chapter-15_Deprecation.md ├── Chapter-16_Version_Control_and_Branch_Management ├── Chapter-16_Version_Control_and_Branch_Management.md └── images │ └── Figure 16-1.png ├── Chapter-17_Code_Search ├── Chapter-17_Code_Search.md └── images │ ├── Figure 17-1.png │ ├── Figure 17-2.png │ ├── Figure 17-3.png │ └── Figure 17-4.png ├── Chapter-18_Build_Systems_and_Build_Philosophy ├── Chapter-18_Build_Systems_and_Build_Philosophy.md └── images │ ├── Figure 18-1.jpg │ ├── Figure 18-2.jpg │ ├── Figure 18-3.png │ ├── Figure 18-4.png │ └── Figure 18-5.png ├── Chapter-19_Critique_Googles_Code_Review_Tool ├── Chapter-19_Critique_Googles_Code_Review_Tool.md └── images │ ├── Figure 19-1.png │ ├── Figure 19-2.png │ ├── Figure 19-3.png │ ├── Figure 19-4.png │ ├── Figure 19-5.png │ ├── Figure 19-6.png │ ├── Figure 19-7.png │ └── Figure 19-8.png ├── Chapter-1_What_Is_Software_Engineering ├── Chapter-1_What_Is_Software_Engineering.md └── images │ ├── figure 1-1.png │ └── figure 1-2.png ├── Chapter-20_Static_Analysis ├── Chapter-20_Static_Analysis.md └── images │ ├── Figure 20-1.png │ └── Figure 20-2.png ├── Chapter-21_Dependency_Management ├── Chapter-21_Dependency_Management.md └── images │ └── Figure 21-1.png ├── Chapter-22_Large-Scale_Changes └── Chapter-22_Large-Scale_Changes.md ├── Chapter-23_Continuous_Integration ├── Chapter-23_Continuous_Integration.md └── images │ ├── Figure 23-1.png │ ├── Figure 23-2.png │ ├── Figure 23-3.png │ ├── Figure 23-4.png │ └── Figure 23-5.png ├── Chapter-24_Continuous_Delivery └── Chapter-24_Continuous_Delivery.md ├── Chapter-25_Compute_as_a_Service └── Chapter-25_Compute_as_a_Service.md ├── Chapter-2_How_to_Work_Well_on_Teams └── Chapter-2_How_to_Work_Well_on_Teams.md ├── Chapter-3_Knowledge_Sharing └── Chapter-3_Knowledge_Sharing.md ├── Chapter-4_Engineering_for_Equity └── Chapter-4_Engineering_for_Equity.md ├── Chapter-5_How_to_Lead_a_Team └── Chapter-5_How_to_Lead_a_Team.md ├── Chapter-6_Leading_at_Scale ├── Chapter-6_Leading_at_Scale.md └── images │ ├── Figure 6-1.png │ └── Figure 6-2.png ├── Chapter-7_Measuring_Engineering_Productivity └── Chapter-7_Measuring_Engineering_Productivity.md ├── Chapter-8_Style_Guides_and_Rules └── Chapter-8_Style_Guides_and_Rules.md ├── Chapter-9_Code_Review └── Chapter-9_Code_Review.md ├── Foreword.md └── Preface.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .temp 3 | .cache 4 | .idea 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | software-engineering-at-google.gh.miniasp.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/README.md -------------------------------------------------------------------------------- /_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/_coverpage.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/_sidebar.md -------------------------------------------------------------------------------- /assets/images/swe_at_google.2.cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/assets/images/swe_at_google.2.cover.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/index.html -------------------------------------------------------------------------------- /zh-cn/Afterword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Afterword.md -------------------------------------------------------------------------------- /zh-cn/Chapter-10_Documentation/Chapter-10_Documentatio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-10_Documentation/Chapter-10_Documentatio.md -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/Chapter-11_Testing_Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/Chapter-11_Testing_Overview.md -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/images/image-20220407195517053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/images/image-20220407195517053.png -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/images/image-20220407195824423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/images/image-20220407195824423.png -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/images/image-20220407200232089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/images/image-20220407200232089.png -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/images/image-20220407200917862.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/images/image-20220407200917862.png -------------------------------------------------------------------------------- /zh-cn/Chapter-11_Testing_Overview/images/image-20220407201117705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-11_Testing_Overview/images/image-20220407201117705.png -------------------------------------------------------------------------------- /zh-cn/Chapter-12_Unit_Testing/Chapter-12_Unit_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-12_Unit_Testing/Chapter-12_Unit_Testing.md -------------------------------------------------------------------------------- /zh-cn/Chapter-13_Test_Doubles/Chapter-13_Test_Doubles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-13_Test_Doubles/Chapter-13_Test_Doubles.md -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/Chapter-14_Larger_Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/Chapter-14_Larger_Testing.md -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-3.png -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-4.png -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-5.png -------------------------------------------------------------------------------- /zh-cn/Chapter-14_Larger_Testing/images/Figure 14-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-14_Larger_Testing/images/Figure 14-6.png -------------------------------------------------------------------------------- /zh-cn/Chapter-15_Deprecation/Chapter-15_Deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-15_Deprecation/Chapter-15_Deprecation.md -------------------------------------------------------------------------------- /zh-cn/Chapter-16_Version_Control_and_Branch_Management/Chapter-16_Version_Control_and_Branch_Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-16_Version_Control_and_Branch_Management/Chapter-16_Version_Control_and_Branch_Management.md -------------------------------------------------------------------------------- /zh-cn/Chapter-16_Version_Control_and_Branch_Management/images/Figure 16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-16_Version_Control_and_Branch_Management/images/Figure 16-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-17_Code_Search/Chapter-17_Code_Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-17_Code_Search/Chapter-17_Code_Search.md -------------------------------------------------------------------------------- /zh-cn/Chapter-17_Code_Search/images/Figure 17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-17_Code_Search/images/Figure 17-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-17_Code_Search/images/Figure 17-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-17_Code_Search/images/Figure 17-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-17_Code_Search/images/Figure 17-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-17_Code_Search/images/Figure 17-3.png -------------------------------------------------------------------------------- /zh-cn/Chapter-17_Code_Search/images/Figure 17-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-17_Code_Search/images/Figure 17-4.png -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/Chapter-18_Build_Systems_and_Build_Philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/Chapter-18_Build_Systems_and_Build_Philosophy.md -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-1.jpg -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-2.jpg -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-3.png -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-4.png -------------------------------------------------------------------------------- /zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-18_Build_Systems_and_Build_Philosophy/images/Figure 18-5.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/Chapter-19_Critique_Googles_Code_Review_Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/Chapter-19_Critique_Googles_Code_Review_Tool.md -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-3.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-4.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-5.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-6.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-7.png -------------------------------------------------------------------------------- /zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-19_Critique_Googles_Code_Review_Tool/images/Figure 19-8.png -------------------------------------------------------------------------------- /zh-cn/Chapter-1_What_Is_Software_Engineering/Chapter-1_What_Is_Software_Engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-1_What_Is_Software_Engineering/Chapter-1_What_Is_Software_Engineering.md -------------------------------------------------------------------------------- /zh-cn/Chapter-1_What_Is_Software_Engineering/images/figure 1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-1_What_Is_Software_Engineering/images/figure 1-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-1_What_Is_Software_Engineering/images/figure 1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-1_What_Is_Software_Engineering/images/figure 1-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-20_Static_Analysis/Chapter-20_Static_Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-20_Static_Analysis/Chapter-20_Static_Analysis.md -------------------------------------------------------------------------------- /zh-cn/Chapter-20_Static_Analysis/images/Figure 20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-20_Static_Analysis/images/Figure 20-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-20_Static_Analysis/images/Figure 20-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-20_Static_Analysis/images/Figure 20-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-21_Dependency_Management/Chapter-21_Dependency_Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-21_Dependency_Management/Chapter-21_Dependency_Management.md -------------------------------------------------------------------------------- /zh-cn/Chapter-21_Dependency_Management/images/Figure 21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-21_Dependency_Management/images/Figure 21-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-22_Large-Scale_Changes/Chapter-22_Large-Scale_Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-22_Large-Scale_Changes/Chapter-22_Large-Scale_Changes.md -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/Chapter-23_Continuous_Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/Chapter-23_Continuous_Integration.md -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-3.png -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-4.png -------------------------------------------------------------------------------- /zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-23_Continuous_Integration/images/Figure 23-5.png -------------------------------------------------------------------------------- /zh-cn/Chapter-24_Continuous_Delivery/Chapter-24_Continuous_Delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-24_Continuous_Delivery/Chapter-24_Continuous_Delivery.md -------------------------------------------------------------------------------- /zh-cn/Chapter-25_Compute_as_a_Service/Chapter-25_Compute_as_a_Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-25_Compute_as_a_Service/Chapter-25_Compute_as_a_Service.md -------------------------------------------------------------------------------- /zh-cn/Chapter-2_How_to_Work_Well_on_Teams/Chapter-2_How_to_Work_Well_on_Teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-2_How_to_Work_Well_on_Teams/Chapter-2_How_to_Work_Well_on_Teams.md -------------------------------------------------------------------------------- /zh-cn/Chapter-3_Knowledge_Sharing/Chapter-3_Knowledge_Sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-3_Knowledge_Sharing/Chapter-3_Knowledge_Sharing.md -------------------------------------------------------------------------------- /zh-cn/Chapter-4_Engineering_for_Equity/Chapter-4_Engineering_for_Equity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-4_Engineering_for_Equity/Chapter-4_Engineering_for_Equity.md -------------------------------------------------------------------------------- /zh-cn/Chapter-5_How_to_Lead_a_Team/Chapter-5_How_to_Lead_a_Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-5_How_to_Lead_a_Team/Chapter-5_How_to_Lead_a_Team.md -------------------------------------------------------------------------------- /zh-cn/Chapter-6_Leading_at_Scale/Chapter-6_Leading_at_Scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-6_Leading_at_Scale/Chapter-6_Leading_at_Scale.md -------------------------------------------------------------------------------- /zh-cn/Chapter-6_Leading_at_Scale/images/Figure 6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-6_Leading_at_Scale/images/Figure 6-1.png -------------------------------------------------------------------------------- /zh-cn/Chapter-6_Leading_at_Scale/images/Figure 6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-6_Leading_at_Scale/images/Figure 6-2.png -------------------------------------------------------------------------------- /zh-cn/Chapter-7_Measuring_Engineering_Productivity/Chapter-7_Measuring_Engineering_Productivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-7_Measuring_Engineering_Productivity/Chapter-7_Measuring_Engineering_Productivity.md -------------------------------------------------------------------------------- /zh-cn/Chapter-8_Style_Guides_and_Rules/Chapter-8_Style_Guides_and_Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-8_Style_Guides_and_Rules/Chapter-8_Style_Guides_and_Rules.md -------------------------------------------------------------------------------- /zh-cn/Chapter-9_Code_Review/Chapter-9_Code_Review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Chapter-9_Code_Review/Chapter-9_Code_Review.md -------------------------------------------------------------------------------- /zh-cn/Foreword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Foreword.md -------------------------------------------------------------------------------- /zh-cn/Preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doggy8088/Software-Engineering-at-Google/HEAD/zh-cn/Preface.md --------------------------------------------------------------------------------