From 4b379f270c5db078abe03bed74557c48f6027c38 Mon Sep 17 00:00:00 2001 From: Rahil Kabani Date: Sat, 14 Nov 2020 09:07:56 +0530 Subject: [PATCH 1/2] fix: command to push new branch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80a968a..46a7c0a 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Contributions are what make the open source community such an amazing place to b 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'feat: Add some AmazingFeature'`) -4. Push to the Branch (`git push origin feature/AmazingFeature`) +4. Push to the Branch (`git push -U origin feature/AmazingFeature`) 5. Open a Pull Request You are requested to follow the contribution guidelines specified in [CONTRIBUTING.md](./CONTRIBUTING.md) while contributing to the project :smile:. From 98adfe7f7d6e9ceeaefa38a1333f1688cebe9267 Mon Sep 17 00:00:00 2001 From: Rahil Kabani Date: Fri, 20 Nov 2020 02:39:01 +0530 Subject: [PATCH 2/2] fix: flag case in git push command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 46a7c0a..3ca01d8 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Contributions are what make the open source community such an amazing place to b 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'feat: Add some AmazingFeature'`) -4. Push to the Branch (`git push -U origin feature/AmazingFeature`) +4. Push to the Branch (`git push -u origin feature/AmazingFeature`) 5. Open a Pull Request You are requested to follow the contribution guidelines specified in [CONTRIBUTING.md](./CONTRIBUTING.md) while contributing to the project :smile:.