workflow
config
set editor for git
configfile: .gitconfig
positon: ~/.git/.gitconfig or ~/.gitconfig
add one row: editor = vim
1
2[core]
editor = vim
using git
stash
通过git stash命令将本地修改暂存至stash中,等同于git stash push
1
2git stash
git stash push通过git stash pop命令将stash中的修改恢复至本地
1
2git stash appply # 当仅有一个stash时,可以直接用apply
git stash popgit stash show 展示暂存的内容
1
2git stash show
git stash show 1 # 展示第一个stash,每个暂存有序号,默认是0git stash push将修改暂存
references
- github course https://github.com/skills/introduction-to-github