diff --git "a/\347\254\254\344\270\211\351\203\250\345\210\206\342\200\224\342\200\224\345\260\235\350\257\225\345\217\202\344\270\216\345\274\200\346\272\220/\346\217\220\344\272\244\347\254\254\344\270\200\344\270\252 Pull Request.md" "b/\347\254\254\344\270\211\351\203\250\345\210\206\342\200\224\342\200\224\345\260\235\350\257\225\345\217\202\344\270\216\345\274\200\346\272\220/\346\217\220\344\272\244\347\254\254\344\270\200\344\270\252 Pull Request.md" index 754e2a204598e0e165fe2a1d1e9dbc4074373e09..203caf9e6e71dd92d7bf9d4db774556c2d8346e0 100644 --- "a/\347\254\254\344\270\211\351\203\250\345\210\206\342\200\224\342\200\224\345\260\235\350\257\225\345\217\202\344\270\216\345\274\200\346\272\220/\346\217\220\344\272\244\347\254\254\344\270\200\344\270\252 Pull Request.md" +++ "b/\347\254\254\344\270\211\351\203\250\345\210\206\342\200\224\342\200\224\345\260\235\350\257\225\345\217\202\344\270\216\345\274\200\346\272\220/\346\217\220\344\272\244\347\254\254\344\270\200\344\270\252 Pull Request.md" @@ -26,7 +26,7 @@ Pull Request 本质上是一种协同工作的机制,可以进行基于网络 1. 在本地提交 README.md ``` - echo "# " >> README.md + echo "pull_request_demo from A" >> README.md git init git add README.md git commit -m "first commit" @@ -41,9 +41,9 @@ Pull Request 本质上是一种协同工作的机制,可以进行基于网络 ``` git clone https://github.com/B/pull_request_demo - echo "# add form B" >> README.md + echo "pull_request_demo add form B" >> README.md git add README.md - git commit -m "modify " + git commit -m "modify commit" git push ```