ToolGit: A collection of scripts that extend Git with various sub-commands
1–10 of 59 posts
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#2This script in your path means that after you say pull code and have merge conflicts, "git jump" will open vim with the quickfix list populated with the locations of the conflicts.
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#3Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#4Several are 30+ lines of boilerplate to run a git one-liner.
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#5https://gist.github.com/romainl/a3ddb1d08764b93183260f8cdf0f... This script in your path means that after you say pull code and have merge conflicts, "git jump" will open vim with the quickfix list populated with the locations of the conflicts.
This update is from May 2023
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#6Most of these would be better as aliases in your global hit config file. Several are 30+ lines of boilerplate to run a git one-liner.
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#7Especially useful to me is `git bulk` to apply a command to all the git repos under the directory, and `git ignore "bin/"` to quickly add something to the `.gitignore` file.
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#8Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#9Obligatory mention of https://github.com/tj/git-extras/blob/main/Commands.md for more/similar commands. Especially useful to me is `git bulk` to apply a command to all the git repos under the directory, and `git ignore "bin/"` to quickly add something to the `.gitignore` file.
There is also: gitup . -e "arbitraryShellCommand withArg"
Re: ToolGit: A collection of scripts that extend Git with various sub-commands
#10Most of these would be better as aliases in your global hit config file. Several are 30+ lines of boilerplate to run a git one-liner.
It is kind of interesting that there is much interest, work and maintenance on these over-complications...There seems to be a related repo - git-extras - that does the same as this repo, and has 17k stars.