8
當我已經達到了一個發展分支,我認爲是準備部署一個點,我有時做到以下幾點:在git push運行時運行其他git命令是否安全?
git checkout master
git merge --no-ff develop --no-edit
# Latency occurs here
git push
git checkout develop
git merge --ff master
git push
在等待第一git push
發生,是安全的開闢新的終端窗口並運行命令來檢查開發,在master中合併,並推動開發到遠程存儲庫?
相關問題:Is it safe to checkout a new git branch during the push of a current branch?,但它只是談論是否git checkout
是安全的。
Git操作應該是原子操作,所以我懷疑你的操作應該是安全的。 –
它應該是安全的。意外的操作可以通過鎖來停止。 – ElpieKay