Update From Dev To Main #1

Merged
radin merged 20 commits from dev into main 2026-03-13 10:35:06 +00:00
Showing only changes of commit 0dbb061575 - Show all commits

View File

@@ -204,23 +204,23 @@ git revert HEAD
```bash
git revert <commit-id>
```
show all branches
```bash
git branch
```
show all branches but with datails
```bash
git branch -v
```
delete target branch
```bash
git branch -d <branch-name>
```
swith on target branch
```bash
git checkout <branch-name>
```
create branch and switch on it
```bash
git checkout -b <branch-name>
```