git 操作 push本地分支 覆盖 服务器端分支

如何将整个分支替换服务器端分支
git 操作
git push origin vv:sandbox/woody3525 -f     强制push到某分支

git push origin :sandbox/woody3525     表示删除此分支


类似git status 查看改变的文件目录
git log --name-status


查看相邻的diff
git log -p



git checkout 分支
git cherry-pick
git rebase -i HEAD~3
git reset --hard
git branch -av
git branch -D 分支


git reflog
git log -g

make clean

find ./ -name init.rc
grep recovery . -r

ps
top



git diff 418a034784e2fafb12af40c8a39544258b964e56 6ffe7041702e79a3da151412d44d5238223202b0 > ~/p1.patch

git diff a7723f9c214b6350f2a3bd8c46096da654a7f32e 36c37f63a76d1c7348d38601cc7f6c6ff66cf4e5 > ~/p2.patch

diff -ruNw p1.patch p2.patch > p3.patch

gedit p3.patch

meld p1.patch p2.patch



你可能感兴趣的:(java,git,F#)