Add git.md
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2026-03-04 23:38:41 +05:30
parent ad1463943e
commit cc6b1bada3

11
git.md Normal file
View File

@@ -0,0 +1,11 @@
1. Pushing a branch to a new branch in remote.
```bash
git push --set-upstream <remote-path> <new-branch-name>
```
2. Remove uncommited changes.
```bash
git restore .
```