Skip to content

Latest commit

 

History

History
108 lines (66 loc) · 4.22 KB

using_git_with_the_knop_project.md

File metadata and controls

108 lines (66 loc) · 4.22 KB

Using git with the Knop Project

This article assumes that you have a GitHub account, set up your SSH keys to work with GitHub, and installed git. If not, please refer to the Git and GitHub Installation and Configuration Guide.

The Knop Project uses the "fork and pull" model for collaboration. This article provides explicit instructions to developers so they can follow this model and be effective collaborators in the project.

Fork and clone the Knop repo

  1. While logged into your GitHub account, navigate to the Knop Project on GitHub.

    https://github.com/knop-project/knop

    We strongly recommend that you click the Watch button so that you can follow progress of the project.

  2. Fork the Knop Project repository to your GitHub account by clicking the "Fork" button. At the time of this writing, the Fork button appeared in the upper-right corner beneath your account name.

  3. Clone your fork of Knop from your GitHub account to your local computer. The URL to use in the command will be the SSH option, and appears like this:

     git@github.com:USERNAME/knop.git
    

    In your Terminal application, enter the following command, substituting your account username as noted.

     git clone git@github.com:USERNAME/knop.git
    
  4. Configure remotes such that you can pull changes from the Knop Project repository into your local repository.

    In your Terminal application, enter the following commands:

     cd knop
     # Changes the active directory to the newly cloned "knop" directory
    
     git remote add upstream git@github.com:knop-project/knop.git
     # Assigns the original repo to a remote called "upstream"
    
     git fetch upstream
     # Pulls in changes not present in your local repository, without modifying your files
    

Now you're ready to start doing some work.

Modifying and contributing to the Knop Project

  1. Update your local repo

    Before you start working on your local files, you should pull down all updates from the upstream repo to your local repo, and merge any changes into your working files.

     git fetch upstream
     # Fetches any new changes from the original repo
    
     git merge upstream/master
     # Merges any changes fetched into your working files
    
  2. Create a branch

    Branching allows you to test an idea or add new features to the project. To create a branch and begin working in it, run these commands:

     git branch MYBRANCH
     # Creates a new branch called "MYBRANCH"
    
     git checkout MYBRANCH
     # Makes "MYBRANCH" the active branch
    

    Or you can use this shortcut to combine the above two commands.

     git checkout -b MYBRANCH
     # create a new branch for my work and switch to it
    
  3. You can switch between branches at any time using git checkout.

     git checkout master
     # Makes "master" the active branch
    
     git switch MYBRANCH
     # Makes "MYBRANCH" the active branch
    
  4. Determine which branch you are currently on, and the status of files in your local repository.

     git status
    

    When you edit files, changes are tracked according to whichever branch is current at that time. Thus you should always switch to the branch where you want to do your code editing before editing code.

  5. Once you are done editing files, you need to stage them (add them to the index) and commit them with a message. This shortcut does it all in one swoop:

     git commit -a -m "commit_message"
    
  6. Next, push your branch up to your fork on GitHub.

     # on the first push only (-u allows the tracking of "MYBRANCH"):
     git push -u origin MYBRANCH
    
     # on subsequent pushes:
     git push
    
  7. Finally, to contribute your changes to the Knop Project, submit a pull request through the GitHub website. The project administrators will review your request. Read details of how to use pull requests.

Updating your fork on GitHub

At any time you can update your fork on GitHub.

git fetch upstream
git merge upstream/master
git push

More information

The following article provides a tutorial and overview that walks you through the above process for a non-existent project called "Spoon-Knife".

Fork a repo