Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
  • Create a GitHub account if you don't have one already.
  • Install Git on your local machine.
  • Go to the PBS Pro golden repository on GitHub: https://github.com/PBSPro/pbspro.

  • Create a fork of the golden repository.

  • Clone the forked repository to your local machine:

    Info
    iconfalse

    git clone https://github.com/<your GitHub user name>/pbspro.git


  • Go inside the cloned directory:

    Info
    iconfalse

    cd pbspro


  • Configure your Git name and email (<username>@emaildomain.com: your email ID)

    Info
    iconfalse

    git config --global user.name "<your name>"

    git config --global user.email <username@emaildomain.com> (your email)

    Note: You may skip --global if you want to use this configuration only for the PBS repository.

  • Add a remote called "upstream" (we use this convention) for the golden repository

    Info
    iconfalse

    git remote add upstream https://github.com/PBSPro/pbspro.git


  • OPTIONAL: Create and set up your GPG signature to use when you sign your commits.   Commits must be signed If you want, you can sign your commit before your pull request is merged into the golden repository.  More on that later.

...

OSS Site Map

Developer Guide Pages

...