- CouchDB and PHP Web Development Beginner’s Guide
- Tim Juravich
- 163字
- 2021-08-13 18:22:51
Time for action — installing and configuring Git
Get ready! We are going to install Git onto our computer using Homebrew.
- Open Terminal.
- Run the following command to install Git using Homebrew:
brew install git
- Terminal will download and install Git for you in just a matter of moments. It will then respond with a success message telling you that Git has been installed.
- After Git has been installed, you need to configure it so that it knows who you are when you commit changes to data. Run the following commands to identify yourself and make sure to fill in your own information where I've put
Your Name
andyour_email@domain.com:
git config global user.name "Your Name" git config global user.email your_email@domain.com
What just happened?
We just installed Git from the source using Homebrew. We then configured Git to use our name and e-mail address. These settings will make sure that any changes that are committed to source control from this machine are identified.
推薦閱讀
- Mastering Entity Framework Core 2.0
- Intel Galileo Essentials
- Visual Basic程序設計(第3版):學習指導與練習
- 新手學Visual C# 2008程序設計
- JavaScript前端開發與實例教程(微課視頻版)
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第3版)
- The Data Visualization Workshop
- SciPy Recipes
- OpenCV with Python Blueprints
- R的極客理想:量化投資篇
- Microsoft Dynamics GP 2013 Cookbook
- 網頁設計與制作
- Go Systems Programming
- Web開發新體驗
- 深入理解MySQL主從原理