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

https://github.com/xbotter/gitout

A command line tool for efficient Git branch management. Switch to the main branch, pull the latest code, and switch to a new branch in one step
https://github.com/xbotter/gitout

git

Last synced: about 2 months ago
JSON representation

A command line tool for efficient Git branch management. Switch to the main branch, pull the latest code, and switch to a new branch in one step

Awesome Lists containing this project

README

          

# GitOut

This is a simple command line tool that can switch to the master/main branch and pull the latest code in one step, and switch to a new branch in one step.

## Installation

Requires .NET SDK 8.0 to be installed.
Then you can install the tool using the following command:

```bash
dotnet tool install -g gitout
```

## Usage

```bash
git-out my-new-branch
```

This will switch to the main branch, pull the latest code, and then switch to the new branch `my-new-branch`.

If you want to switch to the other branch and pull the latest code, you can run:

```bash
git-out -m master my-new-branch
```

## License
MIT

---
*Generated By Github Copilot*