> For the complete documentation index, see [llms.txt](https://alanmpan.gitbook.io/git-learning/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alanmpan.gitbook.io/git-learning/git/34.-la-qu-gong-xiang-bian-geng.md).

# 34.拉取共享变更

进入克隆库 `cloned_git_learnnig`操作

```powershell
# 添加远程仓库
$ git remote add shared ..\git_learning_git\

# 创建跟踪分支
$ git branch --track shared master
branch 'shared' set up to track 'master'.

# 拉取共享库
$ git pull shared master

remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), 351 bytes | 25.00 KiB/s, done.
From ..\git_learning_git\
* branch            master     -> FETCH_HEAD
* [new branch]      master     -> shared/master
Updating b4e913c..61e87c9
Fast-forward
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

# 查看文件
$ cat .\README.md
Git Learnning
这条记录是在原始仓库中添加的

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://alanmpan.gitbook.io/git-learning/git/34.-la-qu-gong-xiang-bian-geng.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
