Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 417 Bytes

File metadata and controls

31 lines (25 loc) · 417 Bytes

1. Create a Fork of this Repo

2. Cloning

git clone <Fork_Url>

3. Branching

git branch <NewBranchName>
git checkout <NewBranchName>
            ||
git checkout -b <NewBranchNow>

4. Add your files

git add .

5. Commit your Changes

git commit -m "Commit Message"

6. Push your changes

git push -u origin <NewBranchName>

7. Create a PR