git命令實踐

來源:互聯網
上載者:User
一、命令

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教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.