# Git Branch

:star\_struck: `praktek`

`Buat Branch`

```
git branch <branch_baru>
```

`Hapus Branch`

```
git branch -d <nama_branch>
```

`Pindah Branch`

```
git checkout <nama_branch>
```

Buat Branch baru dan langsung pindah ke branch tersebut

```
git checkout -b <nama_branch>
```

`Menggabungkan Branch`

```
git merge <nama_branch>

*** check apakah sudah merge
git branch --merged
```

`Ganti Nama Branch`&#x20;

```
git branch -m <nama_baru_branch> // langsung
git branch -m <nama_lama> <nama_baru> // nembak
```

Check Branch di repositori

```
git branch -a
```


---

# Agent Instructions: 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:

```
GET https://imotd.gitbook.io/git-master/doc/git-branch.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
