当你正在写接口A, 同事过来请你修改bug B, 这时, 可以
[code] git stash[/code]将现在的本地修改暂存下来,接着修改 bug B, 将bug B 提交以后, 可以
[code]git stash pop[/code]
将修改拉出来 接着开发接口A。
当你正在写接口A, 同事过来请你修改bug B, 这时, 可以
[code] git stash[/code]将现在的本地修改暂存下来,接着修改 bug B, 将bug B 提交以后, 可以
[code]git stash pop[/code]
将修改拉出来 接着开发接口A。