Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdallahkhaliid/shcool-dashboard
https://github.com/abdallahkhaliid/shcool-dashboard
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdallahkhaliid/shcool-dashboard
- Owner: abdallahkhaliid
- License: mit
- Created: 2024-10-03T00:13:41.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T00:51:59.000Z (3 months ago)
- Last Synced: 2024-12-04T15:44:56.184Z (18 days ago)
- Language: JavaScript
- Homepage: https://shcool-dashboard.vercel.app
- Size: 15.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ITI-GP-CLIENT
# common command line for push changes
## Create a new branch
```bash
git checkout -b
```## Check the current branch
```bash
git branch --show-current
```## Move to another branch
```bash
git checkout
```## List all branches
```bash
git branch
```## Push changes to GitHub
```bash
git add .
git commit -m "Your commit message"
git push origin
```## Pull and Push in two steps:
```bash
git pull origin
git push origin
```## Rebase and push after pulling
```bash
git pull --rebase origin && git push origin
```