git --version
git config --global user.name "youname"
git config --global user.email "*********@163.com"
檢視git配置資訊git config --list
git init
git status
git add
git commit -m 提交資訊
git log
git checkout 檔案
git rm --cached 檔案
git reset --hard commitid
git branch
git branch 分支名稱
git checkout 分支名稱
git merge **分支
git branch -d 分支名稱 // -d強制刪除
git stash
git stash pop
git push 倉庫位址 分支名
git push master
git remote add 倉庫別名 倉庫位址
git remote add origin
git push origin master
git push -u origin master
git push //記住位址後可直接提交
git clone 倉庫位址
git pull 倉庫位址 分支名稱
node_modules //不管理 node_modules 資料夾
test.html //不管理 test.html 檔案
Git版本控制常用命令
內容 於 第一行 還有阮老師的部落格 開啟git bash.一 配置身份 git config global user.name wang weiwei git config global user.email wangwei129549 gmail.com 二 建立 倉庫 repository 進...
版本控制 git常用命令
概念預熱 1 工作區 working directory 2 暫存區 stage 3 版本庫 reponsitory 自己建立專案,初始化git追蹤以後 首先會在工作區對專案作出修改 文字修改,增加檔案,刪除檔案等 git status 檢視當前分支狀態 是否有檔案修改,沒有暫存,沒有提交等 git...
Git版本控制常用命令
建立倉庫 git init 會在本地目錄下生成.git 建立需要忽略的檔案,不加入版本控制 建立.gitignore,並新增需要忽略的檔案及目錄 gitigonre 檔案只在git提交管理之前起作用,一旦提交後,後期更改不會起作用,如需對已經處在版本管理的 檔案 目錄 進行取消管理操作,須執行以下幾...