DeveloperServices/git: Difference between revisions

update with decom status & FxOS pointers
(add apache traffic)
(update with decom status & FxOS pointers)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
Git DVCS Service
Git DVCS Service
{{Admon/caution|<code>git.mozilla.org</code> is being shut down|See {{bug|1277297}} for details, and below for information on finding content formerly stored here.}}


= Overview =
= Overview =


<code>git.mozilla.org</code> is our primary Git service access point. This hosts all FxOS related code, including mirrors of upstream repositories used in building FxOS.
<code>git.mozilla.org</code> used to be our primary Git service access point. It used to mirrored all FxOS related code, including mirrors of upstream repositories used in building FxOS. It was never the "Repository of Record" for any Mozilla project.


We are continually making improvements to the service, so please use this as the launch page for any questions or service requests.
All FxOS mirror repositories have been removed, however the repositories are available from their upstream source. The upstream source should be listed in the manifest file for the device you're building. Those manifests can be found in the [https://github.com/mozilla-b2g/b2g-manifest b2g-manifest] repository. (Unfortunately, some manifests were not correctly maintained - you may need to look at older revisions of the manifest if the latest points to <code>git.mozilla.org</code>.
 
All other (non-FxOS) repositories have been moved elsewhere, mostly to [[https://github.com/ GitHub]].


<div id="status"></div>
<div id="status"></div>
= Status =
= Status =


The high level status of git and supporting infrastructure can be seen on the [http://status.mozilla.org/ main Mozilla status page]. You can also view [https://graphite-scl3.mozilla.org/render/?width=586&height=308&_salt=1420764233.108&yAxisSide=right&title=git%201%20mem%20used%20%26%20load&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.load.load.shortterm)&target=hosts.git1_dmz_scl3_mozilla_com.memory.memory.used.value&target=hosts.git1_dmz_scl3_mozilla_com.swap.swap.used.value&target=secondYAxis(averageSeries(hosts.git*_dmz_scl3_mozilla_com.cpu.*.cpu.idle.value)) current host load] and [https://graphite-scl3.mozilla.org/render/?width=688&height=308&_salt=1423692927.323&yAxisSide=right&title=git%201%20Apache&from=-16hours&xFormat=%25a%20%25H%3A%25M&tz=UTC&target=secondYAxis(hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_requests.count)&target=hosts.git1_dmz_scl3_mozilla_com.apache.apache80.apache_bytes.count Apache traffic].
The high level status of git and supporting infrastructure can be seen on the [https://status.mozilla.org/ main Mozilla status page]. You can also view [http://hwine.github.io/gitstats#mem-load current host load] and [https://hwine.github.io/gitstats#apache-overview Apache traffic].
 
= FAQ =
 
* '''I get a 404 in my browser then I access the repository via the URL on the summary page!'''
** The URLs listed on a repository's summary page are useful only with git, and you can not web browse the repository using the same URL. For example, using the [http://git.mozilla.org/?p=bugzilla/bugzilla.git;a=summary Bugzilla repository] as an example:
 
<pre>
    # HTTP(S) is not supported
    $ curl -s -I https://git.mozilla.org/bugzilla/bugzilla.git | grep ^HTTP
    HTTP/1.1 404 Not Found
   
    # git+http is supported
    $ git ls-remote https://git.mozilla.org/bugzilla/bugzilla.git master
    6419b7fcbf9c8efa2d7b55c7e40cfbdf08a5cd5c        refs/heads/master
   
    # git+ssh is supported
    $ git ls-remote ssh://gitolite3@git.mozilla.org/bugzilla/bugzilla.git master
    6419b7fcbf9c8efa2d7b55c7e40cfbdf08a5cd5c        refs/heads/master
</pre>   




<div id="troubleshooting"></div>
<div id="troubleshooting"></div>


= Troubleshooting and Problem Reporting =
= Troubleshooting and Problem Reporting =
Confirmed users
1,364

edits