一、安装Git
在
mac
终端输入
Git
检测指令,可以通过
git
命令查看
Git
是否安装过,如果没有则会弹出安装按钮,如果安装过则会输出如下信息。
WMBdeMacBook-Pro:~ WENBO$ git
usage: git [--version] [--help] [-C <path>] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
These are common Git commands used in various situations:
start a working area (see also: git help tutorial)
clone Clone a repository into a new directory
init Create an empty Git repository or reinitialize an existing one
work on the current change (see also: git help everyday)
add Add file contents to the index
mv Move or rename a file, a directory, or a symlink
reset Reset current HEAD to the specified state
rm Remove files from the working tree and from the index
examine the history and state (see also: git help revisions)
bisect Use binary search to find the commit that introduced a bug
grep Print lines matching a pattern
log Show commit logs
show Show various types of objects
status Show the working tree status
grow, mark and tweak your common history
branch List, create, or delete branches
checkout Switch branches or restore working tree files
commit Record changes to the repository
diff Show changes between commits, commit and working tree, etc
merge Join two or more development histories together
rebase Reapply commits on top of another base tip
tag Create, list, delete or verify a tag object signed with GPG
collaborate (see also: git help workflows)
fetch Download objects and refs from another repository
pull Fetch from and integrate with another repository or a local branch
push Update remote refs along with associated objects
'git help -a' and 'git help -g' list available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.
**安装
Git
的方式有三种:**
**【方式一】通过
homebrew
安装
Git
:**
Homebrew
是
macOS
的一个包管理工具,如果未安装
homebrew
,需先安装
homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
再通过如下命令安装
git
brew installgit
**【方式二】
Git
官网下载最新
git Mac
版本安装:** 下载地址
Binary installer
二进制安装,点击下载的
git-2.27.0-intel-universal-mavericks.dmg
安装。
**【方式三】安装
Xcode
:**
Xcode
安装完太大,占用空间,如果不需要安装
Xcode
,最好选择方式二安装
git
。打开终端输入
git
会弹出安装
Xcode
和安装
git
或者打开
App Store
搜索
Xcode
安装。
Xcode
是
Apple
官方
IDE
,功能非常强大,是开发
Mac
和
IOS App
的必选装备,而且是免费的。它集成了
Git
和一些插件,但是安装起来很大
二、配置Git 【创建ssh key】
**【1】设置
username
和
email
:** 通过终端输入以下命令来配置用户名和邮箱,这些信息将用于记录你所有的提交历史:也可以通过
git config --list
查看已经设置的配置信息。
git config --global user.name "username"git config --global user.email "email"
**【2】创建
SSH Key
:** 在使用
Git
进行远程仓库的推送
Push
或拉取
Pull
时,为了验证你的身份通常需要使用
SSH
密钥。在终端中输入
ssh-keygen
,然后按下回车,接着连续按三次回车即可在你的用户目录(一般是
/Users/your_name
)下生成
.ssh
文件夹,并包含你的
SSH Key
。
ssh-keygen -t rsa -C"useremail"
Last login: Sat Jan 614:12:16 on ttys000
WMBdeMacBook-Pro:~ WENBO$ ssh-keygen -t rsa -C"useremail"
Generating public/private rsa key pair.
Enter fileinwhich to save the key (/Users/username/.ssh/id_rsa):
/Users/username/.ssh/id_rsa already exists.
Overwrite (y/n)? y
方式一: 在终端查看
.ssh/id_rsa.pub
文件:
open.ssh/id_rsa.pub
回车后,就会新弹出一个终端,然后复制里面的
key
。
方式二: 用
cat
命令查看
cat .ssh/id_rsa.pub
【3】将
SSH Key
添加到你的
GitHub
或者
GitLab
账号或其他远程仓库的账户设置中,就可以开始你的代码托管之旅。
点击
New SSH key
:
添加
key
:
【4】通过
ssh -t
进行验证,输出如下信息表示成功。
ssh -T [email protected] login:SatJan618:32:35 on ttys000
WMBdeMacBook-Pro:~WENBO$ ssh -T [email protected] wenmobo!You've successfully authenticated, but GitHub does not provide shell access.
WMBdeMacBook-Pro:~WENBO$
三、配置IDEA
在终端通过
where git
找到
git
位置,再进入
setting
页面选择或者搜索
Git
并配置
Path to Git executable
即可。
四、Git基本操作
安装和配置完
Git
之后,你可以创建自己的代码仓库并进行基本的操作,如:
【1】使用
git init
初始化一个新的
Git
仓库。
【2】使用
git add <file>
或
git add .
来添加文件到暂存区。
【3】使用
git commit -m "your message"
将暂存区的改动提交到仓库。
【4】使用
git push
将本地仓库的更改推送到远程仓库。
【5】使用
git clone <repository>
克隆一个远程仓库到本地。
【6】使用
git pull
将远程仓库的更改拉取到本地。
总结:
Git
在现代软件开发中扮演着不可或缺的角色,而
macOS
提供了友好和简洁的环境来支持开发者使用
Git
。在
mac
上安装、配置
Git
并执行基本操作是每个开发者的基础技能。无论你是一个刚入行的新手,还是一个有经验的老手,希望本文能够帮助你在
mac
环境下更加得心应手地使用
Git
。
版权归原作者 程序猿进阶 所有, 如有侵权,请联系我们删除。