程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> git命令實踐,git命令

git命令實踐,git命令

編輯:關於PHP編程

git命令實踐,git命令


一、命令

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.php
diff --git a/public/ectemplates/ectemplates_class.php b/public/ectemplates/ectem
index 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)

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved