Skip to content

A collection of various mini projects to enhance your skills.

Notifications You must be signed in to change notification settings

Tushar-0008/AmongCode

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

forthebadge forthebadge

AmongCode

A collection of simple programs and projects to enhance your skills.

If you are new to Github and open source then, visit here.

An issue can be assigned to 3 geeks max, first come first serve.

You have to solve the issue in 15 days from the day issue is assigned to you.

Steps To Follow

  • Select an issue and ask to be assigned to it.

  • Check existing programs here.

  • Star the repository.

  • On the GitHub page for this repository, click on the Button "Fork". fork image

  • Create clone your forked repository on your local machine. code ui

    For example, run this command inside your terminal:

    git clone https://github.com/<your-github-username>/AmongCode.git

    Replace <your-github-username>!

    Learn more about forking and cloning a repo.

  • Before you make any changes, keep your fork in sync to avoid merge conflicts:

    git remote add upstream https://github.com/VIPverma01/AmongCode.git
    git fetch upstream
    git pull upstream master
    git push
  • If you run into a merge conflict, you have to resolve the conflict. There are a lot of guides online, or you can try this one by opensource.com.

  • Checkout to development branch (name your branch according to the issue name).

    git checkout -b <branch-name>
    
  • Create a folder in Programs directory according to issue name and add your github username in brackets eg. Program_Name(Username).

  • Write your code and add to the respective folder in the Programs directory, locally.

  • Don't forget to add a README.md in your folder, according to the README_TEMPLATE.

  • Add the changes with git add, git commit (write a good commit message, if possible):

    git add -A
    git commit -m "<your message>"
  • Push the code to your repository.

    git push origin <branch-name>
  • Go to the GitHub page of your fork, and make a pull request:

    pull request image

    Read more about pull requests on the GitHub help pages.

  • Now wait, until one of us reviews your Pull Request! If there are any conflicts, you will get a notification.

About

A collection of various mini projects to enhance your skills.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 67.1%
  • Python 32.9%