Skip to content

nihira20/Xplore3.0_ccf2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

How to Create a Pull Request.

1. Fork the Repository

  1. Go to the repo/folder on GitHub you want to contribute to.
  2. Click the Fork button.
  3. This creates your own copy of the repository on github.

Now you have your own version of the project on github.


2. Clone Your Fork

Copy the repository to your computer(local):

git clone https://github.com/your-username/repository-name.git

Go inside the folder:

cd repository-name

3. Create a New Branch

create a different branch for the sake of not messing up main branch

git checkout -b my-new-feature

Now you are working safely in your own branch.


4. Make Changes

Edit the files you want to change.

Save the files.


5. Add and Commit Changes

Stage your changes:

git add .

Commit your changes:

git commit -m "a meaningful message"

6. Push the Branch to GitHub

push it offfff

git push origin my-new-feature

7. Create the Pull Request

  1. Go to your fork on GitHub.
  2. You will see a button: Compare & pull request.
  3. Click it.
  4. Add a clear title and description.
  5. Click Create Pull Request.

Your Pull Request is now submitted.


About

Welcome to ProjectX!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors