Empfohlen: „git-Tutorial
git remote add origin git@github.com:yeszao/dofiler.git # 配置远程git版本库 git pull origin master # 下载代码及快速合并 git push origin master # 上传代码及快速合并 git fetch origin # 从远程库获取代码 git branch # 显示所有分支 git checkout master # 切换到master分支 git checkout -b dev # 创建并切换到dev分支 git commit -m "first version" # 提交 git status # 查看状态 git log # 查看提交历史 git config --global core.editor vim # 设置默认编辑器为vim(git默认用nano) git config core.ignorecase false # 设置大小写敏感 git config --global user.name "YOUR NAME" # 设置用户名 git config --global user.email "YOUR EMAIL ADDRESS" # 设置邮箱
5. Verlauf anzeigen
git config --global alias.br="branch" # 创建/查看本地分支 git config --global alias.co="checkout" # 切换分支 git config --global alias.cb="checkout -b" # 创建并切换到新分支 git config --global alias.cm="commit -m" # 提交 git config --global alias.st="status" # 查看状态 git config --global alias.pullm="pull origin master" # 拉取分支 git config --global alias.pushm="push origin master" # 提交分支 git config --global alias.log="git log --oneline --graph --decorate --color=always" # 单行、分颜色显示记录 git config --global alias.logg="git log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative" # 复杂显示
7. Zweige und Tags zusammenführen
git clone <url> # 克隆远程版本库 git init # 初始化本地版本库
10. Globale und lokale Konfiguration
Globale Konfiguration wird gespeichert in:
$Home/.gitconfig
Lokale Lagerkonfiguration wird gespeichert in: .git/config
12. Remote- und lokale Zusammenführung
git status # 查看状态 git diff # 查看变更内容 git add . # 跟踪所有改动过的文件 git add <file> # 跟踪指定的文件 git mv <old> <new> # 文件改名 git rm <file> # 删除文件 git rm --cached <file> # 停止跟踪文件但不删除 git commit -m “commit message” # 提交所有更新过的文件 git commit --amend # 修改最后一次提交
Das obige ist der detaillierte Inhalt vonEine vollständige Liste häufig verwendeter Git-Befehle [empfohlene Sammlung]. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!