diff --git a/README.md b/README.md index e69de29..2147999 100755 --- a/README.md +++ b/README.md @@ -0,0 +1,76 @@ +# Welcome to Portfolio + +### 1.How to Contribute +*** +**- Fork the Repository** + +**- Clone the Forked repository** + + + +### 2.Using Git to Clone: +*** +``` +git clone https://github.com/URL-HERE/ +``` +*Add Scripts and necessary changes* + + + +### 3.Using Git: +*** +*Initialize git in the repo and adding contents* +``` +git init (Can be skipped) +git add . +``` +*Commit the changes with commit messages* +``` +git commit -m "MENTION-YOUR-COMMITS" +``` + + +### 4.Push your branch to Forked Repo: +*** +``` +git remote add origin URL-HERE +git push -u origin master +``` + + +### 5.Raise a Pull Request to the Parent Repository through Github Website + + + +### 6.Syncing a fork: +*** +*Fetch the changes made in upstream* +``` +git fetch UPSTREAM/MASTER +``` +*Merge the changes from upstream/master into your local master branch* +``` +git merge UPSTREAM/MASTER +``` +*Push to your branch* +``` +git push +``` + + + +### 7.⭐ Please dont forget to star this repository and contribute to it ⭐ +*** +