You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,7 +173,7 @@ Here are some helpful aliases for your `~/.gitconfig`
173
173
|`fetch-pull-requests = fetch origin '+refs/pull/*/head:refs/remotes/origin/pull/*'`| Fetch pull requests from github so you can `git checkout pull/123` and test them locally. |
174
174
|`roots = log --all --oneline --decorate --max-parents=0`| Show the root commits. |
175
175
|`unpushed = log @{u}..`| Show which commits have not been pushed to the tracking branch and are safe to amend/rebase. |
176
-
|`wip = rebase -i @{u}`| Starts an interactive rebase of all the commits you haven't pushed yet. Handy for collapsing a bunch of WIP snapshots into logical commits before pushing, without having to worry about accidentally squashing a commit someone else has already referred to. |
176
+
|`work-in-progress = rebase -i @{u}`| Starts an interactive rebase of all the commits you haven't pushed yet. Handy for collapsing a bunch of work-in-progress snapshots into logical commits before pushing, without having to worry about accidentally squashing a commit someone else has already referred to. |
177
177
178
178
## Other useful git stuff
179
179
@@ -215,7 +215,7 @@ Here are some helpful aliases for your `~/.gitconfig`
215
215
216
216
### External Git Utilities
217
217
218
-
*[bfg repo-cleaner](https://rtyley.github.io/bfg-repo-cleaner/) - Removes large or troublesome blobs like git-filter-branch does, but faster.
218
+
*[bfg repo-cleaner](https://rtyley.github.io/bfg-repo-cleaner/) - Removes large or troublesome blobs like `gitfilter-branch` does, but faster.
219
219
*[bitbucket-git-helpers](https://github.com/unixorn/bitbucket-git-helpers.plugin.zsh) - Helper scripts to allow you to create bitbucket PRs from a shell session.
220
220
*[blackbox](https://github.com/StackExchange/blackbox) - Tom Limoncelli open sourced the tool they use at Stack Exchange to use GPG to store secrets in a git repository.
221
221
*[branch-manager](https://github.com/elstgav/branch-manager) - ZSH plugin for branch management
@@ -227,6 +227,7 @@ Here are some helpful aliases for your `~/.gitconfig`
227
227
*[git-branches](https://github.com/shurcooL/git-branches) - Prints the commit behind/ahead counts for branches.
228
228
*[git-bump](https://github.com/arrdem/git-bump) - Hook scripts to automatically bump the version file in a repository
229
229
*[git-chart](https://github.com/flashcode/gitchart) - A python script that builds charts from a git repository
230
+
*[git-cop](https://github.com/bkuhlmann/git-cop) - Enforces Git rebase workflow with consistent Git commits for a clean and easy to read/debug project history.
230
231
*[git-crypt](https://www.agwa.name/projects/git-crypt/) - Enables transparent encryption and decryption of files in a git repository. Files which you choose to protect are encrypted when committed, and decrypted when checked out.
231
232
*[git-deploy-s3](https://github.com/bradt/git-deploy-s3) - Keeps your git repo's assets in sync with Amazon S3.
232
233
*[git-diffall](https://github.com/thenigan/git-diffall) - Provides a directory based diff mechanism for git.
@@ -245,8 +246,8 @@ Here are some helpful aliases for your `~/.gitconfig`
245
246
*[git-submodule-tools](https://github.com/kollerma/git-submodule-tools) - A collection of scripts that should help make life with git submodules easier.
246
247
*[git-sweep](https://github.com/arc90/git-sweep) - A utility script to remove branches that have been merged to master.
247
248
*[git-todo](https://github.com/ibolmo/git-todo/blob/master/git-todo) - helper script to show all the todo entries in your repo.
249
+
*[git-up (gem)](https://github.com/aanand/git-up) - Fetch and rebase all locally-tracked remote branches.
248
250
*[git-up (python)](https://pypi.python.org/pypi/git-up) - Python implementation of Aanand's original ruby gem
249
-
*[git-up](https://github.com/aanand/git-up) - Fetch and rebase all locally-tracked remote branches.
250
251
*[git-wayback-machine](https://github.com/MadRabbit/git-wayback-machine) - A simple script to quickly navigate a project's state through it's GIT history
251
252
*[git_history_visualizer](https://github.com/kidpixo/git_history_visualizer) - python script to visualize the history of files in a git repository
252
253
*[gitbaby](https://github.com/lordadamson/gitbaby) - Helper scripts to manage your git repositories
0 commit comments