Skip to content

Contribute

Sarath C Ani edited this page Jul 2, 2020 · 1 revision

How to contribute

✔️ Fork the repository
✔️ Clone it
✔️ Use pull requests to contribute

Basic Git

Syncing Forked Repository :

git remote add upstream https://github.com/ahdhani/Memefier.git
git fetch upstream
git checkout master
git rebase upstream/master

Pushing the changes to remote

git add .
git commit -m “< commit message >”
git pull
git push

Clone this wiki locally