Git 命令筆記

2021-09-01 08:25:49 字數 1496 閱讀 5457

設定使用者資訊

git config --global user.name "名字"

git config --global user.email "郵箱位址"

設定終端配色

git config --global color.diff auto

git config --global color.status auto

git config --global color.branch auto

git config --global color.interactive auto

git config --global color.ui auto

重新命名分支

git branch -m old_branch new_branch

刪除遠端分支

git push origin :分支名稱

清理無效的遠端分支引用(可使用-n引數預演哪些分支引用將會被清除)

git remote prune origin

合併兩個分支,忽略行尾的空格和換行符差異

git merge -s recursive -xignore-space-at-eol

有用的配置 ~/.gitconfig

[alias]

glog = log --pretty=oneline --abbrev-commit --graph --decorate

global ignore

git config --global core.excludesfile '~/.gitignore'

git difftool ([url]

git difftool -t meld -y branch1 branch2

git difftool -t meld -y branch1 branch2 config/database.yml

git difftool -t meld -y commitid1 commitid2

git difftool -t meld -y head

設定全域性.gitignore檔案

git config --global core.excludesfile '~/.gitignore'

Git命令筆記

常用配置 使用 加速git clone,這裡的1081埠在ssr客戶端選項 本地 本地埠可以設定 https.proxy git pull clone太慢的解決方法 有時候要拉的檔案太大了就會很慢,甚至拉不下來,這時候可以試試下面這個方法 git配置 取消 git config global uns...

git命令筆記

git init 初始化乙個git倉庫,使用git init命令 git add 新增大stage git commit m 提交到本地倉庫 git config global user.name your name git config global user.email email exampl...

Git命令筆記

碼雲建立倉庫並上傳 git 全域性設定 git config global user.name your name git config global user.email your email 建立 git 倉庫 git status 檢查狀態 git add git commit m first...