Skip to content

virusahi/c-language-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started 🤩🤗

  1. Fork this repository .

  2. Clone on the repository to your local machine

    git clone <git repo>
    
  3. Navigate to cloned repository.

    cd filename
    
  4. Create a new branch to work on with

    git checkout -b my-new-branch

    Time to make some changes to the cloned repository on your local machine.

  5. Add your work with

    git add .
    
  6. Save your work, by commiting it.

    git commit -m "first commit"
  7. Let's try pushing it on remote repository, in our case github!

    git push origin my-new-branch
    
  8. Ready to share your work with others? So let's generate a Pull Request! To do this, go to your forked github repository and Create a Pull Request.