diff options
| author | Paul Eggert | 2019-05-25 18:29:16 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-05-25 18:29:16 -0700 |
| commit | 461cb9217d83c0518de2e9bb6fd3ee0d8cd0626b (patch) | |
| tree | fa043efb8cfda62a69be6ea05237d8a95692afbc /CONTRIBUTE | |
| parent | 2be225c3a042441484c716c27dcd43c5eb0ad8f9 (diff) | |
| download | emacs-461cb9217d83c0518de2e9bb6fd3ee0d8cd0626b.tar.gz emacs-461cb9217d83c0518de2e9bb6fd3ee0d8cd0626b.zip | |
* CONTRIBUTE: Split git configuration from fetch-and-build
Diffstat (limited to 'CONTRIBUTE')
| -rw-r--r-- | CONTRIBUTE | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE index a5433e30d37..f257fc57f0f 100644 --- a/CONTRIBUTE +++ b/CONTRIBUTE | |||
| @@ -7,11 +7,14 @@ or run the shell command 'info "(emacs)Contributing"'.) | |||
| 7 | ** The Emacs repository | 7 | ** The Emacs repository |
| 8 | 8 | ||
| 9 | Emacs development uses Git on Savannah for its main repository. | 9 | Emacs development uses Git on Savannah for its main repository. |
| 10 | Briefly, the following shell commands build and run Emacs from scratch: | 10 | To configure Git for Emacs development, you can run the following: |
| 11 | 11 | ||
| 12 | git config --global user.name 'Your Name' | 12 | git config --global user.name 'Your Name' |
| 13 | git config --global user.email 'your.name@example.com' | 13 | git config --global user.email 'your.name@example.com' |
| 14 | git config --global transfer.fsckObjects true | 14 | git config --global transfer.fsckObjects true |
| 15 | |||
| 16 | The following shell commands then build and run Emacs from scratch: | ||
| 17 | |||
| 15 | git clone git://git.sv.gnu.org/emacs.git | 18 | git clone git://git.sv.gnu.org/emacs.git |
| 16 | cd emacs | 19 | cd emacs |
| 17 | ./autogen.sh | 20 | ./autogen.sh |