├── CONTRIBUTING.md └── README.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Purpose 2 | 3 | This repository exists to allow Googlers to collaborate and stage pull requests 4 | against the official Swift repository. 5 | 6 | # Contributing 7 | 8 | We strongly encourage contributors to contribute directly to upstream whenever 9 | possible; contributions will be rejected if the project owners feel they are 10 | more appropriate for a direct upstream contribution. 11 | 12 | If you would like to contribute to this repository, there are a few steps to 13 | follow: 14 | 15 | ## Contributor License Agreement 16 | 17 | Contributions to this project must be accompanied by a Contributor License 18 | Agreement. You (or your employer) retain the copyright to your contribution, 19 | this simply gives us permission to use and redistribute your contributions as 20 | part of the project. Head over to https://cla.developers.google.com/ to see your 21 | current agreements on file or to sign a new one. 22 | 23 | You generally only need to submit a CLA once, so if you‘ve already submitted one 24 | (even if it was for a different project), you probably don’t need to do it 25 | again. 26 | 27 | ## Code Reviews 28 | 29 | All submissions, including submissions by project members, require review. We 30 | use GitHub pull requests for this purpose. Consult GitHub Help for more 31 | information on using pull requests. 32 | 33 | ## Upstream Policies 34 | 35 | All contributions to this repository are expected to go upstream; please make 36 | sure that your contribution follows all of the contribution policies from 37 | upstream. 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Purpose 2 | 3 | This repository exists to allow Googlers to collaborate and stage pull requests 4 | against the official Swift repository. 5 | 6 | # Projects 7 | 8 | ### Swift for TensorFlow 9 | 10 | **Note:** Swift for TensorFlow source code has moved to the [tensorflow branch on apple/swift](https://github.com/apple/swift/tree/tensorflow). 11 | 12 | - [Home page](https://github.com/tensorflow/swift) 13 | 14 | # Contributing 15 | 16 | We strongly encourage contributors to contribute directly to upstream whenever 17 | possible; contributions will be rejected if the project owners feel they are 18 | more appropriate for a direct upstream contribution. 19 | 20 | If you would like to contribute to this repository, there are a few steps to 21 | follow: 22 | 23 | ## Contributor License Agreement 24 | 25 | Contributions to this project must be accompanied by a Contributor License 26 | Agreement. You (or your employer) retain the copyright to your contribution, 27 | this simply gives us permission to use and redistribute your contributions as 28 | part of the project. Head over to https://cla.developers.google.com/ to see your 29 | current agreements on file or to sign a new one. 30 | 31 | You generally only need to submit a CLA once, so if you‘ve already submitted one 32 | (even if it was for a different project), you probably don’t need to do it 33 | again. 34 | 35 | ## Code Reviews 36 | 37 | All submissions, including submissions by project members, require review. We 38 | use GitHub pull requests for this purpose. Consult 39 | [GitHub Help](https://help.github.com/) for more information on using pull 40 | requests. 41 | 42 | ## Upstream Policies 43 | 44 | All contributions to this repository are expected to go upstream; please make 45 | sure that your contribution follows all of the contribution policies from 46 | upstream. 47 | --------------------------------------------------------------------------------