From 6db653bc10768bd8f4142efa8fc7017d71fcfed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=B0=E5=BD=A6=E7=B3=96?= <1210509625@qq.com> Date: Sat, 5 Dec 2020 00:55:19 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E7=AC=AC=E4=B8=89=E9=83=A8=E5=88=86?= =?UTF-8?q?=E2=80=94=E2=80=94=E5=B0=9D=E8=AF=95=E5=8F=82=E4=B8=8E=E5=BC=80?= =?UTF-8?q?=E6=BA=90/=E6=8F=90=E4=BA=A4=E7=AC=AC=E4=B8=80=E4=B8=AA=20Pull?= =?UTF-8?q?=20Request.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...244\347\254\254\344\270\200\344\270\252 Pull Request.md" | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 754e2a2..203caf9 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 ``` -- Gitee