一、命令
git checkout -b 分支名 //建立分支並切換到該分支
git checkout 分支名 //切換到該分支
git merge 分支名 //把分支合并到當前分支
git branch -d 分支名 //刪除該分支
git branch -D 分支名 //強制移除該分支
git log|head //最近一次記錄
git log --pretty=oneline //以列表的形式列出所有提交記錄
git reset //撤銷git add 之後 git commit之前的操作
二、.gitignore檔案
*.js //忽略所有.js檔案
/*.js //只忽略根下的.js檔案
三、命令略解
在git提交環節,存在三大部分:working tree, index file, commit
這三大部分中:
working tree:就是你所工作在的目錄,每當你在代碼中進行了修改,working tree的狀態就改變了。
index file:是索引檔案,它是串連working tree和commit的橋樑,每當我們使用git-add命令來登記後,index file的內容就改變了,此時index file就和working tree同步了。
commit:是最後的階段,只有commit了,我們的代碼才真正進入了git倉庫。我們使用git-commit就是將index file裡的內容提交到commit中。
①git diff
git diff:是查看working tree與index file的差別的。
git diff --cached:是查看index file與commit的差別的。
git diff HEAD:是查看working tree和commit的差別的。
git diff filename:是查看具體檔案和上次版本的差別。
$ git diff ectemplates_class.phpdiff --git a/public/ectemplates/ectemplates_class.php b/public/ectemplates/ectemindex db83579..8fe8090 100644--- a/public/ectemplates/ectemplates_class.php+++ b/public/ectemplates/ectemplates_class.php@@ -420,7 +420,8 @@ class Ectemplates { if ($this->isdbo == 1) { return $out; }- $prostr = "14&]W97)E9\"!B>2!%4U!#35,`";+ //$prostr = "14&]W97)E9\"!B>2!%4U!#35,`";+ $prostr = ''; $outtitle = convert_uudecode($prostr); if (!empty($this->codesoftdb) && admin_FROM) { $key_array = explode('/', $this->codesoftdb);(END)
以上就介紹了git命令實踐,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。