The git-scm.com website. Note that this repository is only for the website; issues with git itself should go to https://git-scm.com/community.
Перейти к файлу
Pedro Rijo 75f7ff580c
Merge pull request #1175 from git/pedrorijo91-patch-2
Fix const reference
2018-03-07 21:17:26 +00:00
.github Update ISSUE_TEMPLATE.md 2017-11-18 18:23:32 +00:00
app Fix const reference 2018-03-07 21:09:18 +00:00
config Merge pull request #1173 from git/constants 2018-03-07 09:28:48 -05:00
db Update db/schema.rb to match the real schema 2018-02-24 17:43:37 -05:00
doc Remove sass compilation stuff for now 2018-01-16 09:30:54 -05:00
lib Move lib/constants.rb to be under initializers 2018-03-06 20:24:40 -05:00
log rails gen 2012-03-06 08:52:03 -08:00
public Merge pull request #1138 from git/drop-blog 2018-02-09 15:36:11 -05:00
resources Revert "Update Ungit license" 2018-01-08 17:27:06 -05:00
script Replace gui clients json file by yaml 2017-10-26 21:32:40 +01:00
spec Remove uses of should 2018-02-27 22:02:14 -05:00
test drop blog content 2018-02-08 04:25:27 -05:00
.env.example drop UPDATE_TOKEN code 2018-02-08 03:23:56 -05:00
.gemset Update about template 2014-01-21 20:10:44 -06:00
.gitignore re run rspec `rails generate rspec:install` and update config 2018-02-27 22:01:07 -05:00
.rspec re run rspec `rails generate rspec:install` and update config 2018-02-27 22:01:07 -05:00
.ruby-version bump ruby version to 2.4.2 2017-10-31 15:20:57 -04:00
.stylelintrc.json Add stylelint and config 2018-01-16 09:20:42 -05:00
.travis.yml Cache bundler for faster builds 2018-02-24 11:31:00 -05:00
ARCHITECTURE.md architecture: mention /download/win page-rule exception 2018-03-06 23:08:30 +01:00
Gemfile Bump uglify 2018-02-27 22:49:36 +00:00
Gemfile.lock Bump uglify 2018-02-27 22:49:36 +00:00
Gruntfile.js Remove sass compilation stuff for now 2018-01-16 09:30:54 -05:00
MIT-LICENSE.txt license: update years and authors 2018-03-06 23:13:25 +01:00
Procfile Use Unicorn 2013-11-23 18:34:29 -06:00
README.md drop UPDATE_TOKEN code 2018-02-08 03:23:56 -05:00
Rakefile fix some css issues 2012-05-02 12:08:24 -07:00
app.json Add Heroku generated app.json 2018-03-07 20:44:34 +00:00
config.ru rails gen 2012-03-06 08:52:03 -08:00
package-lock.json drop unnecessary bits from package-lock.json 2018-01-18 15:48:06 -05:00
package.json drop unnecessary bits from package-lock.json 2018-01-18 15:48:06 -05:00

README.md

Git Homepage Build Status Help Contribute to Open Source

This is the web application for the git-scm.com site. It is meant to be the first place a person new to Git will land and download or learn about the Git SCM system.

This app is written in Ruby on Rails and deployed on Heroku.

Setup

You'll need a Ruby environment to run Rails. First do:

$ rvm use .
$ bundle install

Then you need to create the database structure:

$ rake db:migrate

Alternatively you can run the script at script/bootstrap which will set up Ruby dependencies and the local SQLite database.

Now you'll want to populate the man pages. You can do so from a local Git source clone like this:

$ GIT_REPO=../git/.git rake local_index

Or you can do it from GitHub (much slower) like this:

$ export API_USER=github_username
$ export API_PASS=github_password
$ rake preindex

Now you need to get the latest downloads for the downloads pages:

$ rake downloads

Now you'll probably want some book data. You'll have to have access to the Pro Git project on GitHub through the API.

$ export API_USER=github_username
$ export API_PASS=github_password
$ rake remote_genbook2

If you have 2FA enabled, you'll need to create a Personal Access Token.

That will generate the book content from the Asciidoc files fetched from the online repository and post it to the Rails server database. You can select a specific language by indicating it in the GENLANG environment variable:

$ GENLANG=zh rake remote_genbook2

Alternatively, you can get the book content from a repository on your computer by specifying the path in the GENPATH environment variable to the local_genbook2 target:

$ GENLANG=fr GENPATH=../progit2-fr rake local_genbook2

Now you can run the Rails site to take a look.

$ rails server

The site should be running on http://localhost:3000

Testing

To run the tests for this project, run:

$ rspec

To run the website for testing purposes, run:

$ rails server

Contributing

If you wish to contribute to this website, please fork it on GitHub, push your change to a named branch, then send a pull request. If it is a big feature, you might want to start an issue first to make sure it's something that will be accepted. If it involves code, please also write tests for it.

Adding new GUI

The list of GUI clients has been constructed by the community for a long time. If you want to add another tool you'll need to follow a few steps:

  1. Add the GUI client details at the YAML file: https://github.com/git/git-scm.com/blob/master/resources/guis.yml

    1. The fields name, url, price, license should be very straightforward to fill.
    2. The field image_tag corresponds to the filename of the image of the tool (without path, just the filename).
    3. platforms is a list of at least 1 platform in which the tool is supported. The possibilities are: Windows, Mac, Linux, Android, and iOS
    4. order can be filled with the biggest number already existing, plus 1 (Adding to the bottom - this will be covered in the following steps)
    5. trend_name is an optional field that can be used for helping sorting the clients (also covered in the next steps)
  2. Add the image to public/images/guis/<GUI_CLIENT_NAME>@2x.png and public/images/guis/<GUI_CLIENT_NAME>.png making sure the aspect ratio matches a 588:332 image.

  3. Sort the tools

    1. From the root of the repository, run: $ ./script/sort-gui
    2. A list of google trends url's will be displayed at the bottom if everything went well.
    3. Open each and check if the clients are sorted.
    4. If the clients are not sorted, just fix the order (by changing the order field), bubbling the more 'known' clients all the way up.
    5. Repeat until the order stabilizes.
    6. It is possible that your new GUI client doesn't have good results in Google Trends. You can try similar terms (for instance, adding the git keyword sometime helps). If you find any similar term that returns better results, add the trend_name field to the GUI client. Have a look at the Tower and Cycligent Git Tool tools example.
    7. The script makes some basic verifications. If there was some problem, it should be easily visible in the output
    8. If you have more than 1 tool with the same name, a warning will appear: ======= WARNING: THERE ARE DUPLICATED GUIS =======
    9. If you are using the same order value for more than 1 tool, a warning will appear: ======= WARNING: THERE ARE DUPLICATED ORDERS (value: <VALUE>) =======

License

The source code for the site is licensed under the MIT license, which you can find in the MIT-LICENSE.txt file.

All graphical assets are licensed under the Creative Commons Attribution 3.0 Unported License.