From 9e5ad3e0998c40d9722e9b60eebb0f44792f76e7 Mon Sep 17 00:00:00 2001 From: Aimira Kazybayeva Date: Fri, 16 Jun 2023 00:42:43 +0500 Subject: [PATCH 1/2] Added instructions for pull request --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index efd9d96..51164a8 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ # Work_remote -Скоро я стану, как Илон Маск... \ No newline at end of file +Скоро я стану, как Илон Маск... + +# Instruction for pull request +1. Sign in or sign up on github.com +2. Find a repository you like or the one that was provided to you. +3. Create a fork of this repository (copying this repository to yourself) +4. Create an empty folder on your laptop +5. Open this folder in VScode +6. Perform `git init` of this folder (in order for this folder to become a repository) +7. Check status with `git status` +8. Add the forked repository by copying the link on github.com and pasting it in `git remote add origin "LINK"` +9. Check that your 2 origins are the same (local and online repository) via `git remote -v` +10. Change the branch name from master to main with `git branch -m master main` +11. Perform `git pull` OR `git pull origin main`in order to pull all of the info from the Github online forked repository +12. Create a new branch with `git branch ` +13. Switch to this new branch with `git checkout ` +14. Include information that you need to this branch and save with Ctrl + C. +15. Perform `git add` and `git commit` +16. Pull request online \ No newline at end of file From 91ca827ff4955512b9655eb15a2cef365bcef9d1 Mon Sep 17 00:00:00 2001 From: Aimira Kazybayeva Date: Fri, 16 Jun 2023 00:45:23 +0500 Subject: [PATCH 2/2] Added more details --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 51164a8..88ce7b6 100644 --- a/README.md +++ b/README.md @@ -17,4 +17,5 @@ 13. Switch to this new branch with `git checkout ` 14. Include information that you need to this branch and save with Ctrl + C. 15. Perform `git add` and `git commit` -16. Pull request online \ No newline at end of file +16. Type `git push --set-upstream origin instr` in order for these new edits to appear in the forked repository online. +17. Pull request \ No newline at end of file