git日常命令
克隆項目:git clone addr dir 切換分支,分支並沒有 git checkout -b production origin/production 分支已存在,單純切換分支 git checkout branch_name 更新 git pull 更新其他分支的文件 git checkout origin/production -- file1 file2 重置本地分支 git reset --hard remotes/origin/production 刪除分支 git branch -D remotes/origin/production 刪除遠程不存在的本地分支git remote prune origin 更新某些文件到某個版本 git checkout 2efe37c8d18ab44fe79151c110b777241f7870f3 -- pc/common/header/head.html 不用管分支,只要找commit 查看不同分支某個文件的差異 git diff branch1 branch2 -- file 查看本地和參考的區別 git diff HEAD file 提交命令 git branch --set-upstream master origin/master git add -A git commit -a git push 遷移git倉庫 git remote set-url origin ssh:[email protected]
git日常命令