git config user.name // 檢視當前登入使用者名稱git config user.email // 檢視當前登入郵箱
git config --global user.name "your_username" // 修改使用者名稱
git config --gslobal user.email "your_email" // 修改郵箱
$ git config --list // 列出所有git當前能找到的配置
git clone [url] // 轉殖倉庫,對倉庫的拷貝,checkout
git remote // 檢視遠端倉庫伺服器
// 分支操作操作分支:
1.建立分支 git branch 分支名
2.檢視分支 git branch
3.切換分支 git checkout 分支名
4.建立並切換到分支 git checkout -b 分支名
5.刪除分支 git branch -d 分支名
6.檢視遠端分支 git branch -a
7.合併分支 git merge 分支名
// 提交步驟git status
git add
git commit -m '注釋'
git pull // 拉取,解決衝突s
git push // 推送
上傳本地專案到遠端倉庫:去掉專案上的git版本資訊:git init
git add .
git commit -m ''
git remote add origin ***x(倉庫位址)
(登入驗證)
git push -u origin master
git bash here->
find . -name ".git" | xargs rm -rf
GIT命令備忘
git checkout orphan master git rebase i 初始化本地倉庫 git init提交commit到本地倉庫 更換分支 git branch set upstream to master origin master新增所有修改了的檔案 git add 移除關聯遠端分支 ...
Git 命令備忘
建立新的git倉庫 git initcheckout repo local repo git clone path to repository remote repo git clone username host past to repository 工作目錄持有實際的檔案 暫存區 index 像...
git命令備忘
git config global user.name peirenlei git config global user.name peirenlei 163.com 分為以下幾個區域 blessed repository 遠端倉庫 local repository 本地倉庫 stage area ...