Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Bush (0.17 sec)

  1. CONTRIBUTING.md

    main channel of communication for contributors.  
    There are some guidelines which will make applying PRs easier for us:
    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    To sign off a single commit:
    
    `git commit --amend --signoff`
    
    To sign off one or multiple commits:
    
    `git rebase --signoff origin/master`
    
    Then force push your branch:
    
    `git push --force origin test-branch`
    
    ### Fixing sanity check failures after public API changes
    
    If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    ### Create a Pull Request
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.8K bytes
    - Viewed (0)
Back to top