git 安装
步骤
安装地址 Git (git-scm.com)
注:默认安装或者自己选盘
git 配置
设置
get config --global user.name 'YXKING'
get config --global user.email 'YXKING@163.com'
git config --global core.quotepath false
1、进入到电脑用户文件下,右键Git Bash Here ,创建.bashrc文件
touch ~/. bashrc
2、编辑.bashrc文件,为以下内容
alias git-log='git log --pretty=oneline --all --graph --abbrev-commit'
alias ll='ls -al'
3、保存后,运行
source ~/.bashrc
使用
初始化仓库
1、新建一个git-test01文件夹,进入文件夹,右键Git Bash Here\
2、初始化仓库 git init
基本命令
流程图
touch file01.txt
git status
git add .
git commit -m "注释"
git log [option]
-- all
-- pretty=oneline
-- abbrev-commit
-- graph
git reset --hard commitID
git reflog
|