Giter Site home page Giter Site logo

sanjaydevtech / code-with-love Goto Github PK

View Code? Open in Web Editor NEW
125.0 1.0 407.0 1.11 MB

Open source programming algorithms

C 13.37% C++ 54.07% Java 13.30% JavaScript 3.67% PHP 1.50% Python 12.67% Kotlin 0.37% HTML 0.48% Groovy 0.01% Batchfile 0.02% Haskell 0.19% CSS 0.29% C# 0.05%
hacktoberfest java c cpp kotlin android php python javascript data-structures

code-with-love's Introduction

Code-with-love

Instructions::

Make sure you have a GitHub account. In case you don't have one, you can create your account by visiting https://github.com/ and clicking on Sign up option at the top right corner.

1. Star and Fork this Repository

You can star and fork this repository on GitHub by navigating at the top of this repository.

GitHub repository URLs will reference both the username associated with the owner of the repository, as well as the repository name. For example, acmbvp is the owner of the Hacktoberfest repository, so the GitHub URL for this project is:

https://github.com/SanjayDevTech/Code-with-love

When you’re on the main page of a repository, you’ll see a button to "Star" and “Fork” the repository on the upper right-hand side of the page, underneath your user icon.

2. Clone the Repository

To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

This URL will be similar to the URL above, except now it will end with .git. The URL will look like this: https://github.com/your-username/Code-with-love.git

You can alternatively copy the URL by using the green “Clone or download” button from your repository page that you just forked from the original repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL.

Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:

git clone https://github.com/your-username/Code-with-love.git

3. Create a New Branch

To create your branch, from your terminal window, change your directory so that you are working in the directory of the repository. Be sure to use the actual name of the repository (i.e. Code-with-love) to switch into that directory.

cd Code-with-love

Now, we’ll create our new branch with the git branch command. Make sure you name it descriptively so that others working on the project understand what you are working on.

git branch new-branch

Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command:

git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Output:
Switched to branch 'new-branch'
code .

Once you enter this command, the whole code will automatically open in your code editor

At this point, you can now modify existing files or add new files to the project on your own branch.

Make Changes Locally

Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -A flag to add all changes that we have made:

git add -A or git add .

Next, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way.

If you have a very short message, you can record that with the -m flag and the message in quotes:

Example:
git commit -m "Updated Readme.md"
At this point you can use the git push command to push the changes to the current branch of your forked repository:
Example:
git push --set-upstream origin new-branch

4. Update Local Repository

While working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you don’t want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, you’ll need to sync changes.

We’ll first go over configuring a remote for the fork, then syncing the fork.

5. Configure a Remote for the Fork

Next up, you’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.

git remote add upstream https://github.com/your-username/Code-with-love.git

In this example, // upstream // is the shortname we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the shortname.

6. Sync the Fork

Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date. To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the // git fetch // command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname “upstream” to refer to the upstream repository, you’ll have to pass that to the command:

git fetch upstream

Switch to the local master branch of our repository:

git checkout master

Now merge any changes that were made in the original repository’s master branch, that you will access through your local upstream/master branch, with your local master branch:

git merge upstream/master

7. Create Pull Request

At this point, you are ready to make a pull request to the original repository.

Navigate to your forked repository, and press the “New pull request” button on your left-hand side of your Repo page.

Hurray! You have just created your First Pull Request.

code-with-love's People

Contributors

akshay1910 avatar alvinma avatar ameenrehman avatar ashisha19 avatar bhavesh1235 avatar codebook-2000 avatar debajit13 avatar ervaibhavkumar avatar gauravpatil8778 avatar ghostuser avatar harshitgupta150 avatar hritikkhurana10sm avatar iamabhii1 avatar kishanpython avatar lsb4 avatar manasdange avatar mihirbani2000 avatar nikhil-1503 avatar nilam23 avatar ojas032 avatar probhav avatar rampal1212 avatar sahil9001 avatar sam0hack avatar sangeetamishra avatar sanjaydevtech avatar sejalshri avatar shivikasaggar avatar suryakamalog avatar utkarshdhiman48 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

code-with-love's Issues

Leap year or not program

File name should be in the below format:

Username_leapyear.extension

These issues are open to all 😃

Adding my C++ Project

I want to add a C++ project of mine named "Travel India" to show the real-world usage of C++

Language used: C++

Add your name to Contributors.md

If you have contributed, please add your name in the CONTRIBUTORS.md file
The format is

- [Username](https://github.com/Username)

Counting Sort Implementation in Java

I would like to put a Counting Sort Implementation in Java. I feel this is an important algorithm to learn as it is one of the sorting algos which can run in linear time (conditions applied).

Resources:

  1. Geeks for Geeks
  2. Introduction to Algorithms Cormen

Js, PHP codes needed

There are currently few programs contributed for js and php languages.
Algorithms needed

Filename format:

Username_program.extension

These issues are open to all 😃

Need good CODE OF CONDUCT

Anyone with good writing skills, help this repo by contributing CODE OF CONDUCT page.
😃 Thank you

Anagram of two strings

A word, phrase, or name formed by rearranging the letters of another, such as spar, formed from rasp.

Android sample projects needed (SEE description)

Requirements of the project:

  • SDK version must be of android 10 or above
  • Custom icon is not mandatory
  • Deprecated methods or classes can be used but it is not recommended
  • Folder name should be in the format username_projectname

Optional

  • Add a README file in your project
  • Check HelloWorld for the format and README

😃 Thank you

Bleak Number Check

Bleak Number Check

A number is called Bleak if it cannot be represented as sum of a positive number 'x' and set bit count in 'x', i.e.,
x + countSetBits(x) is not equal to n for any non-negative number x.

I would like to implement this is C++

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.