Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdallahkhaliid/iti-gp-client
https://github.com/abdallahkhaliid/iti-gp-client
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdallahkhaliid/iti-gp-client
- Owner: abdallahkhaliid
- License: mit
- Created: 2024-09-05T16:56:46.000Z (4 months ago)
- Default Branch: dev
- Last Pushed: 2024-10-20T08:08:24.000Z (2 months ago)
- Last Synced: 2024-12-04T15:44:55.805Z (19 days ago)
- Language: JavaScript
- Homepage: https://iti-gp-client-two.vercel.app
- Size: 18 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
```