forked from ahrens/zfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Workflow Install Git
Peter Ashford edited this page May 28, 2018
·
1 revision
To work with the ZFS software on Github, it's necessary to install the Git software on your computer and set it up. This page covers that process for some common Linux operating systems. Other Linux operating systems should be similar.
The first step is to actually install the Git software package. This package can be found in the repositories used by most Linux distributions. If your distribution isn't listed here, or you'd like to install from source, please have a look in the official Git documentation.
# yum install git
$ sudo dnf install git
$ sudo apt install git
Your user name and email address must be set within Git before you can make commits to the ZFS project. In addition, your preferred text editor should be set to whatever you would like to use.
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
$ git config --global core.editor emacs
- Home
- Getting Started
- Project and Community
- Developer Resources
- Performance and Tuning