- 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.
推薦閱讀
- Java應用與實戰
- JavaScript全程指南
- Learning Spring 5.0
- Vue.js 2 and Bootstrap 4 Web Development
- The Computer Vision Workshop
- 高級C/C++編譯技術(典藏版)
- C++新經典
- Hands-On Nuxt.js Web Development
- Flowable流程引擎實戰
- 零基礎學HTML+CSS
- 零基礎學C語言(第4版)
- Mastering Concurrency in Python
- 多接入邊緣計算實戰
- Instant SQL Server Analysis Services 2012 Cube Security
- Clojure High Performance Programming