An open-source project with a simple yet powerful goal: to develop a calculator with amazing user interface as a basic first project in your development process. 😃
If it's your first contribution do check this out
🚀: Feel free to use this project to make your first contribution to an open-source project on GitHub. Practice making your first pull request to a public repository before doing the real thing!
🚀: Make sure to grab amazing knowledge by getting involved in the open-source community.
This repository is open to all members of the GitHub community. Any member can contribute to this project! ❤️:
Star the repo by pressing the topmost-right button to start your wonderful journey.
You can get your own fork/copy of repository by using the Fork button present at top-right of your screen.
NOTE: commands are to be executed on Linux, Mac, and Windows(using Powershell)
You need to clone or (download) it to local machine using command
# This clones your forked repository
$ git clone "link of repo"NOTE: Please don't forget to replace link of repo with the actual link of the repository on your forked version.
Commit your changes and push to GitHub using following commands :
$ git init# To add all files to branch Folder_Name
$ git add .Type in a message relevant for the code reviewer using
# This message get associated with all files you have changed
$ git commit -m 'relevant message'Now, Push your awesome work to your remote repository using
# To push your work to your remote repository
$ git push -u origin BranchNameFinally, go to your repository in the browser and click on compare and pull requests.
Then add a title and description to your pull request that explains your precious effort.