使用IDE,直接在vcs裏,從git checkout,方便。python
commit是提交到本地git倉庫,本質是作一次存儲快照。git
能夠屢次commit以後,再次push到git服務器。服務器
https://git-scm.com/book/zh/v1/Git-基礎-記錄每次更新到倉庫ide
$ git status On branch master Your branch is up to date with 'origin/master'. #當從git上clone一個項目下來後(使用IDE PyCharm的Py項目),看status,會告訴我個人分支和master是update to date的。
$ git status On branch master Your branch is up to date with 'origin/master'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: run.sh Untracked files: (use "git add <file>..." to include in what will be committed) lic no changes added to commit (use "git add" and/or "git commit -a") #添加新文件,IDE會提醒添加到git,若是沒有添加,文件爲紅色,commit時能夠選擇添加到版本控制 #修改git上已有文件,會變藍色,表示已修改。
在根目錄建立.gitignore文件,這樣就會忽略一些文件,不被提交到gitidea
#忽略pyc,DS_Store結尾文件,忽略.idea/,migrations/下的文件, .pyc .idea/ .DS_Store migrations/ .log
在IDE的version control log中,能夠查看每一個分支的提交msssage,提交人,時間,更改的內容。版本控制
點擊文件,git-show history,能夠比較不一樣歷史commit版本之間的差異blog
在commit時,也能夠對文件比較和上一次commit之間的差異it
每次commit以後都會有一個revision,每一個文件都有本身的revision。這個revision是哈希計算的。io
git會根據這個作文件完整性校驗,因此不能在git不知情的狀況下更改文件和目錄內容ast