Skip to content
/ fit Public

A git-like command line interface for your terminal easily and fastly

Notifications You must be signed in to change notification settings

yuliyu123/fit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fit

A fast git tool to manage and sync your develop branch with upstream easily and fastly.

installation

cargo install --git https://github.com/yuliyu123/fit

alias git cmd

fit create <branch>: git branch new_branch & git checkout new_branch

fit checkout <branch>: git checkout master

At branch:

fit pull: git pull upstream master, pull the latest code from upstream master branch.

fit push: git push --set-upstream origin new_branch.

fit rebase: git pull upstream master --rebase, pull the latest code from upstream master branch to rebase.

fit delete: git push origin --delete new_branch & git branch -D new_branch: delete both local and remote branch.

fit sync: sync fork rep, git fetch upstream -> git checkout master -> git merge upstream/master

fit list: git branch -a

About

A git-like command line interface for your terminal easily and fastly

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages