以下是有用的 Git 命令的详细列表以及说明性示例:
git init
在项目目录中初始化一个新的 Git 存储库。
例子:
$ git init
Initialized empty Git repository in /path/to/your/project/.git/
git clone [url]
将远程存储库从服务器克隆到本地计算机。
例子:
$ git clone https://github.com/yourusername/your-repo.git
Cloning into 'your-repo'...
git add [file]
将一个或多个文件添加到暂存区域以准备 commit.
例子:
$ git add index.html
$ git add *.css
git commit -m "message"
commit 使用已添加到暂存区域的更改 创建一个新的并包含您的 commit 消息。
例子:
$ git commit -m "Fix a bug in login process"
[main 83a9b47] Fix a bug in login process
1 file changed, 5 insertions(+), 2 deletions(-)
git status
查看存储库的当前状态,包括修改的文件和暂存区域。
例子:
$ git status
On branch main
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: index.html
no changes added to commit(use "git add" and/or "git commit -a")
git log
显示 commit 存储库的历史记录。
例子:
$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)
Author: Your Name <[email protected]>
Date: Mon Jul 13 12:34:56 2023 +0200
Fix a bug in login process
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2
Author: Your Name <[email protected]>
Date: Sun Jul 12 18:42:15 2023 +0200
Add new homepage
git branch
列出存储库中的所有分支并标记当前分支。
例子:
$ git branch
* main
feature/add-new-feature
feature/fix-bug
git checkout [branch]
切换到存储库中的另一个分支。
例子:
$ git checkout feature/fix-bug
Switched to branch 'feature/fix-bug'
git merge [branch]
将另一个分支合并到当前分支。
例子:
$ git merge feature/add-new-feature
Updating 83a9b47..65c6017
Fast-forward
new-feature.html| 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 new-feature.html
git pull
从远程存储库获取更改并将其集成到当前分支中。
例子:
$ git pull origin main
From https://github.com/yourusername/your-repo
* branch main -> FETCH_HEAD
Already up to date.
git push
将更改从当前分支推送到远程存储库。
例子:
$ git push origin main
git remote add [name] [url]
将新的远程服务器添加到远程存储库列表中。
例子:
$ git remote add upstream https://github.com/upstream-repo/repo.git
git fetch
从远程存储库下载更改,但不集成到当前分支中。
例子:
$ git fetch origin
git diff
比较暂存区域和跟踪文件之间的更改。
例子:
$ git diff
git reset [file]
从暂存区域中删除文件并将其恢复到之前的状态。
例子:
$ git reset index.html
git stash
暂时保存未提交的更改以在不同的分支上工作而不提交它们。
例子:
$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message
git remote -v
列出远程服务器及其 url 地址。
例子:
$ git remote -v
origin https://github.com/yourusername/your-repo.git(fetch)
origin https://github.com/yourusername/your-repo.git(push)
upstream https://github.com/upstream-repo/repo.git(fetch)
upstream https://github.com/upstream-repo/repo.git(push)