Skip to content

Commit 85e7587

Browse files
author
Amin Jafari
committed
Merge branch 'collaboration/03-git-pull'
2 parents 00d195a + b9de6fd commit 85e7587

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

git-pull.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Git Pull
2+
3+
The `git pull` command downloads and merges changes from a remote repository.
4+
5+
## Usage
6+
```bash
7+
git pull <remote> <branch>
8+
```
9+
10+
## Explanation
11+
- Combines `git fetch` and `git merge` in one command.
12+
13+
- Updates your local branch with changes from the remote.
14+
15+
## Example
16+
```bash
17+
git pull origin main
18+
```

0 commit comments

Comments
 (0)