Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abdallahkhaliid/iti-gp-client


https://github.com/abdallahkhaliid/iti-gp-client

Last synced: 10 days ago
JSON representation

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
```