Skip to content

基本操作

提示

鉴于 git 教程烂大街的缘故,一些基础用法我就不再赘述了,这里只记录一些我觉得比较有用的用法

初次使用 Git 前的配置

bash
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"

命令简写

方法一:使用 git 自带命令简写

bash
$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st status

方法二:使用 shell 命令别名

Mac 下是.zshrc文件,linux 下是.bashrc文件,winows 未知。这里以 Mac 为例:

bash
open ~/.zshrc
##############
# git alias
alias gb="git branch"
alias gs="git status"
alias gsw="git switch"
alias grv="git remote -v"
alias ga="git add . && git status"
alias gau="git add -u . && git status"
alias gc="git commit -m"
alias gcam="git commit --amend -m"
alias gacm="git add . && git commit -m"
alias gl="git log --oneline --graph --all"
alias gradd="git remote add origin"

在文件中添加如下内容

简写命令完整命令备注
gbgit branch查看分支
gsgit status查看状态
gswgit switch切换分支
grvgit remote -v查看远程仓库地址
gagit add . && git status添加所有文件并查看状态
gaugit add -u . && git status添加所有修改文件并查看状态
gcgit commit -m提交并添加注释
gcamgit commit --amend -m修改最后一次提交的注释
gacmgit add . && git commit -m添加所有文件并提交
glgit log --oneline --graph --all查看提交记录
graddgit remote add origin添加远程仓库地址