Skip to content

Repository files navigation

Py50DaysOfCodingBot

Important!

Please before you push your codes to the repository make sure you pull from the repository, so the changes that have been made can be reflected on your local machine, for us to avoid merge conflicts use the git command line

    git pull 

Developers guide.

This process here should be able to guide you on how to contribute effectively to this project, follow the steps below. You should not be new to the git workflow process however if you still are, the guide should still be able to help you through the process.

  • Fork the repository to generate a copy of your own.
  • Clone the repository.
    git clone https://github.com/{your username}/Py50DaysOfCodingBot.git
  • Make the repository (the forked repo) the remote upstream
    git add remote upstream https://github.com/{your username}/Py50DaysOfCodingBot.git
  • Create a branch, the branch name should at least be meaningful e.g if you're working on the footer, your branch name would be;
    git checkout -b footer
  • Make your changes, add them and make your commits
    git add <filename.ext>  OR  git add .  (to add all files)
    git commit -m "your message"
  • Push your codes to the remote upstream repository
    git push -u origin master
  • Or you can also push your code to the current branch which you are in.
  • Make your Pull request and wait for it to be merged.

Happy hacking!

###DAY 12 OF CODING WITH PYTHON

About

This is a code that retweet write-ups on Twitter at the mention of it's keyword

Resources

Stars

2 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors