当使用git时,发现同事提交了代码,但是我的代码的还没有commit,我想先拉取他们的代码一起测试,测试成功后再commit,最好的做法是什么?
git stash save "描述信息"
git pull origin branch_name
git add 文件名
git commit -m "描述解决冲突的结果"
git stash pop
git commit -m "描述提交的更改"
git push origin branch_name
git stash list
git stash drop
这些指令涵盖了在拉取其他人的代码并在完成测试后提交自己的代码时可能涉及的所有操作。