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
- Host: GitHub
- URL: https://github.com/xbotter/gitout
- Owner: xbotter
- License: mit
- Created: 2024-04-05T14:16:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T02:12:21.000Z (about 2 years ago)
- Last Synced: 2025-08-22T04:55:27.989Z (11 months ago)
- Topics: git
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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*