From 8123d49cf2fa78eabaecddd4f2a741b74db5a3fc Mon Sep 17 00:00:00 2001 From: Joel <64314452+joeltorres-7@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:12:25 -0500 Subject: [PATCH] Add extra notes and examples to README.md In other to make it more user-friendly to new Github members, I considered it convenient to add examples of how to perform some of the basic processes in Git Bash such as clone, remote, branch, and push, as well as visual clues. It has been a while since the last update, so I hope it becomes even more helpful for future users. --- README.md | 46 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3548a30..a33f1db 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,42 @@ If you want to contribute to a project and make it better, your help is very wel Look for a project's contribution instructions. If there are any, follow them. -- Create a personal fork of the project on Github. +- Create a personal [fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks) of the project on Github. + +
+
+
+ git clone [https://github.com/your-username/contributing.git]
+
+ git remote add upstream https://github.com/[main-profile-name]/[repository-name].git
+
+ git pull upstream master
+
+ git branch [branch_name]
+
+ git checkout [branch_name]
+
+ git push -u [branch_name]
+
+
+