dependabot[bot]
4cf28ec559
chore(deps): bump actions/stale from 10 to 11 ( #1265 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / Test with Bats (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Signed-off-by: dependabot[bot] <support@github.com>
2026-09-01 12:25:44 -07:00
罗泽轩
09b77e8ed6
ci: add generated manuals check ( #1268 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / Test with Bats (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2026-08-27 13:59:29 +08:00
Vijay Misal
4c38988ba9
feat(mr): support Forgejo/Codeberg pull request URLs ( #1267 )
...
* feat(mr): support Forgejo/Codeberg pull request URLs
Codeberg and other Forgejo instances expose pull requests under
refs/pull/<id>/head instead of GitLab's refs/merge-requests/<id>/head,
so passing a Codeberg pull request URL to git mr fetched the wrong
ref. Recognize the /pulls/<id> URL shape and switch to the matching
ref for that case, leaving the GitLab URL and bare numeric id
behavior unchanged.
Closes #1213
* test(git-mr): cover Forgejo/Codeberg URLs, regenerate man docs
Add a bats test that exercises the pulls URL branch via a local
insteadOf remote rewrite (no real HTTP endpoint needed), and bring
git-mr.1/git-mr.html in line with the git-mr.md changes.
---------
Co-authored-by: vjymisal0 <vijay.looprai@gmail.com>
2026-08-27 13:59:00 +08:00
Vijay Misal
dbf68bac59
fix(is-git-repo): recognize bare repositories ( #1266 )
...
* fix(is-git-repo): recognize bare repositories
is_git_repo() used `git rev-parse --show-toplevel` to detect whether
the current directory is inside a git repository. --show-toplevel
fails for bare repositories since they have no working tree, so every
command that relies on this shared helper (e.g. `git browse`) reports
"Not a git repo!" when run from inside a bare repo, even though it
plainly is one.
Switch to `git rev-parse --git-dir`, which succeeds for both normal
and bare repositories and keeps the existing "not a repo" behavior
for non-repo directories.
Fixes #1238 , reported and LGTM'd by maintainers there with this exact
fix; no PR had been opened for it yet.
Adds tests/is-git-repo.bats covering: a normal repo, a bare repo, and
a plain (non-repo) directory.
* Fix ruff lint failures in scripts/checkstyle.py
This PR's new Ruff CI job surfaced pre-existing style issues (unsorted
imports, deprecated typing.List/Dict, nested ifs, bare exit()) in
checkstyle.py. Cleaned these up so the newly added lint job passes.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-17 14:15:48 +08:00
dependabot[bot]
03569856db
chore(deps): bump actions/setup-python from 6 to 7 ( #1263 )
...
* chore(deps): bump actions/setup-python from 6 to 7
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 6 to 7.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* Fix lints
* Fix typo
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
Co-authored-by: spacewander <spacewanderlzx@gmail.com>
2026-08-14 12:27:16 +08:00
罗泽轩
d11e45f0b1
port python tests to bats ( #1264 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2026-08-12 15:43:59 +08:00
dependabot[bot]
fd2e03cf55
chore(deps): bump actions/setup-go from 6 to 7 ( #1262 )
...
Signed-off-by: dependabot[bot] <support@github.com>
2026-07-19 18:52:47 -07:00
AJ Côté
5a14757944
feat(scp): add verbose, interactive, and dry-run flags ( #1261 )
...
* feat(scp): add -v/--verbose and -i/--interactive flags
git scp/git rscp printed a diff via plain `git diff`/`git diff --stat`
with no `--no-pager` and no TTY check, blocking on the user's pager.
Add -v/--verbose to print the diff via --no-pager before syncing, and
-i/--interactive to also prompt for confirmation before the real
push/copy. Both apply to git scp and git rscp, and must precede
<remote>.
Updates man/git-scp.md and Commands.md.
* feat(scp): add -n/--dry-run flag
Add -n/--dry-run to preview a sync without changing anything: rsync
runs with -n, and git add --force / ssh ... rm are skipped outright.
Implies --verbose, since confirming or previewing with nothing shown
is useless.
Also restructures scp_and_stage's push/delete blocks from `&&`-chains
into if/then, needed to branch on dry-run, which incidentally fixes a
latent bug where a non-TTY COLOR_RESET could silently skip the real
rsync/git add/ssh rm calls.
Updates man/git-scp.md and Commands.md.
* test(scp): add coverage for -n/--dry-run and -i/--interactive abort
git-scp had no test coverage at all. Cover the two paths that need no
real remote destination: dry-run must preview without touching the
index, working tree, or remote path, and declining the interactive
confirmation must abort before anything syncs.
* feat(scp): Code review
* feat(scp): Code review
2026-07-14 19:43:00 +08:00
kdergachev
b450b36036
Added edit/remove functionality to git-ignore ( #1258 )
...
* Added edit/remove functionality to git-ignore.
* Minor change to array-string assignment.
* Fixes array handling for remove.
* Suggested fixes (iteration over arguments, pattern removal, editor handling, tmp file location, symlinked gitignore handling).
* Changed pure bash editing of files to an awk script. Some other minor cosmetic changes.
* Updated docs.
* Modified autocomplete to work with new git-ignore
* Added help message to git-ignore.
* Added help flags to git-ignore's man.
* Made $file in eval safe. Should not do the same for editor since then all of the GIT_EDITOR will be treated as command (flags included).
* Typo fixes.
2026-07-14 19:42:02 +08:00
Acho Arnold
7f36d37283
fix: support Windows ARM64 (clangarm64) in install.cmd ( #1259 )
...
ci / Test with Bats (push) Has been cancelled
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / Test with Pytest (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* fix: support Windows ARM64 (clangarm64) in install.cmd
Git for Windows on ARM64 uses a `clangarm64` directory instead of
`mingw64`. The installer now auto-detects `clangarm64` when
`mingw64` is not present, so it works out of the box on ARM64
Windows machines without requiring the user to manually supply
the path.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* fix: remove trailing whitespace from install.cmd
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* fix: correctly resolve PREFIX when git.exe is under the arch dir in PATH
When 'where git.exe' resolves to ...\mingw64\bin\git.exe or
...\clangarm64\bin\git.exe, installdir becomes the architecture directory
itself. Detect that case by inspecting the leaf directory name instead of
appending mingw64/clangarm64 (which produced non-existent ...\mingw64\mingw64
paths) or using ..\ segments.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-07-08 15:20:25 +08:00
dependabot[bot]
184d37e980
chore(deps): bump actions/checkout from 6 to 7 ( #1260 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / Test with Pytest (push) Has been cancelled
ci / Test with Bats (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout ) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-22 14:05:50 +08:00
Utsav Sabharwal
e92878b81b
feat: add git-delete-gone-branches command ( #1239 )
...
* feat: add git-delete-gone-branches command
Adds a new command to delete local branches whose remote-tracking
branch has been deleted (shown as [gone] in git branch -vv).
This is a common need after PRs are merged and remote branches are
cleaned up, leaving stale local branches behind.
Features:
- Deletes all local branches with a gone remote in one command
- --dry-run / -n flag to preview branches before deletion
Closes #1220
* Address PR review feedback on git-delete-gone-branches
- Use git for-each-ref instead of git branch -vv to avoid false
positives from commit messages containing ': gone]'
- Add interactive confirmation prompt by default; skip with -f/--force
- Add -p/--prune flag to run git fetch --prune before checking
- Add generated man page .1 and .html files
* Use GitHub profile for author contact in man page
* Fix gone-branch detection with nobracket format
2026-06-09 10:36:27 +08:00
罗泽轩
b9e1d88f2c
doc: regenerate git-extras.1 ( #1255 )
...
This file has been reset since commit 032090e847
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2026-05-26 12:28:42 +08:00
Ricardo Fernández Serrata
99207eee8e
refactor(delete-merged-branches): rm -n1 from xargs, fmt pipes ( #1233 )
2026-05-18 16:10:46 +08:00
罗泽轩
9d6319becb
Bump git-extras version to 7.6.0-dev ( #1251 )
2026-05-11 09:49:38 +08:00
罗泽轩
2bdeb59a73
Version 7.5.0 ( #1250 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2026-05-10 10:19:14 +08:00
Russ
c5a0fdf660
Use standard prefix for home dir installs ( #1248 )
2026-04-29 13:46:32 -07:00
Ricardo Fernández Serrata
8d1c970031
refactor(abort): common gitdir ( #1244 )
...
* refactor(abort): common gitdir
* un-readonly
2026-04-14 13:26:28 +08:00
罗泽轩
c06fad59d2
Fix man page usage docs ( #1241 )
2026-03-23 23:21:26 -07:00
phanium
65dd36ae62
Fix git-changelog to handle whitespace in command arguments ( #1232 )
2026-03-05 23:06:10 -08:00
dependabot[bot]
967e339f91
chore(deps): bump bats-core/bats-action from 3.0.1 to 4.0.0 ( #1230 )
...
Bumps [bats-core/bats-action](https://github.com/bats-core/bats-action ) from 3.0.1 to 4.0.0.
- [Release notes](https://github.com/bats-core/bats-action/releases )
- [Commits](https://github.com/bats-core/bats-action/compare/3.0.1...4.0.0 )
---
updated-dependencies:
- dependency-name: bats-core/bats-action
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 14:36:15 +08:00
罗泽轩
ae3d30fb6e
add details when multiple active operations found ( #1229 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2026-02-06 15:03:50 +08:00
John Bachir
032090e847
Add persistent history to git-repl ( #1226 )
...
* persistent command history
* notes
* decision on which commands to save
* configurable history location
* fix history initialization in various scenarios
* documentation
* comment
* don't add whitespace or consecutive duplicates to history
* fix manpage output
* Update bin/git-repl
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
* Update bin/git-repl
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
* Update git-repl
* Update bin/git-repl
* Apply suggestions from code review
* Add `extglob` and generate docs
* Fix regex
* update docs
rm man/git-repl.{1,html}
touch man/git-repl.md
make man/git-repl.{1,html}
---------
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
2026-02-05 11:05:01 -08:00
Erik Skultety
5367101f2e
Support passing ref to git-commits-since ( #1228 )
2026-02-02 21:39:48 -08:00
John Bachir
6ed2643252
ability to specify command when hitting enter ( #1223 )
...
* ability to specify command when hitting enter
* documentation
* man page
* generate man page and html
* run default command through same logic as other commands
impetuous: persist return val for display in promt if non-zero
also future-proofs for other benefits / DRYness. no need for another eval invocation.
* fix generated manpage
2026-01-20 14:11:45 +08:00
John Bachir
b9bd309a87
Improve git-repl prompt ( #1224 )
...
* repl config ideas
* documentation
* Update bin/git-repl
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
* separator
* man page and web docs
* always use dir for project name
---------
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
2026-01-19 16:15:42 -08:00
johnpyp
6f4cf0c1bb
feat: delete-branch multiple unique branch names completions ( #1221 )
2025-12-18 12:40:24 -08:00
dependabot[bot]
f5c48e4842
chore(deps): bump actions/checkout from 5 to 6 ( #1219 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 10:42:06 +08:00
Hugo Ruiz-Mireles
daf9d4148e
Made Git Magic use --force-with-lease ( #1218 )
...
This change simply overwrites the usage of `-f` with
`--force-with-lease` in git-magic because `--force-with-lease` is a
safer alternative.
2025-10-22 11:49:27 +08:00
dependabot[bot]
eb34655aea
chore(deps): bump actions/stale from 9 to 10 ( #1214 )
...
Bumps [actions/stale](https://github.com/actions/stale ) from 9 to 10.
- [Release notes](https://github.com/actions/stale/releases )
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/stale/compare/v9...v10 )
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: '10'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 10:29:50 +08:00
dependabot[bot]
1f1320f4d6
chore(deps): bump actions/setup-go from 5 to 6 ( #1215 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 5 to 6.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](https://github.com/actions/setup-go/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 10:29:28 +08:00
dependabot[bot]
4d05955bc5
chore(deps): bump actions/setup-python from 5 to 6 ( #1216 )
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 10:28:51 +08:00
Daniele Paolella
b57eb8b92a
Fix minor typo in git rename-branch man page ( #1211 )
...
* docs: fix symbols in `git rename-branch` man page
* Format doc page after others and rebuild artifacts
2025-09-04 10:51:48 +08:00
Daniele Paolella
cf6d40d446
Improvements to Bash completion ( #1210 )
...
* Sort Bash completion functions
* feat: add Bash completion for `git rename-branch`
* feat: add Bash completion for `git rename-remote`
* feat: add Bash completion for `git rename-tag`
* fix: use default completion for `git rename-file`
* Refactor rename completion functions common logic
2025-08-29 18:29:31 +08:00
Edwin Kofler
14586c7da0
Fix use of git-whatchanged to git-log ( #1212 )
2025-08-29 18:27:55 +08:00
dependabot[bot]
5c9a7a2533
chore(deps): bump actions/checkout from 4 to 5 ( #1209 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-18 11:15:38 +08:00
罗泽轩
215382b12d
Bump version to 7.5.0-dev ( #1207 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2025-06-23 11:08:27 +08:00
罗泽轩
13cbdfc51e
Version 7.4.0 ( #1206 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2025-06-20 11:12:58 +08:00
Edwin Kofler
3ddc315a76
Format comparisons, functions, and redirections to be consistent ( #1201 )
...
* Format comparisons and functions to be consistent
* Add `checkstyle.py` script and add check to CI
* Fix Ruff lints
2025-06-06 11:10:50 +08:00
Andrew Sullivan Cant
c63b46a33b
add git-wip and git-unwip ( #669 )
...
* Upgrade codespell to v2.4.0
It is a lastet verison, and is needed so that I can use the inline
ignore support in a future commit.
After updating tests/pyproject.toml I ran the following commands:
```
cd tests
poetry lock --no-update
poetry install
```
I also fixed a spelling error in man/git-summary.md, which was not
caught by the old version of codespell. After updating the file I also
updated the related files by running the following commands:
```
cd man
make -C .. man/git-summary.{1,html}
```
* add git-wip and git-unwip
Updated/re-built the documentation with:
```
cd man
make -C .. man/git-unwip.{1,html}
make -C .. man/git-wip.{1,html}
make -C .. man/git-extras.{1,html}
```
2025-05-14 17:05:41 +08:00
dependabot[bot]
d4cd272556
Merge pull request #1203 from tj/dependabot/github_actions/bats-core/bats-action-3.0.1
2025-03-31 05:00:48 +00:00
dependabot[bot]
783812b627
chore(deps): bump bats-core/bats-action from 3.0.0 to 3.0.1
...
Bumps [bats-core/bats-action](https://github.com/bats-core/bats-action ) from 3.0.0 to 3.0.1.
- [Release notes](https://github.com/bats-core/bats-action/releases )
- [Commits](https://github.com/bats-core/bats-action/compare/3.0.0...3.0.1 )
---
updated-dependencies:
- dependency-name: bats-core/bats-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-31 00:23:42 +00:00
Edwin Kofler
c49ca70814
Mostly finish pytest to Bats conversion ( #1200 )
...
* Mostly finish pytest to Bats conversion
* Add Bats version note to testing docs
* Move Bats CI check to separate job
2025-03-26 11:19:30 +08:00
Edwin Kofler
18ecffef5e
Implement half of tests in Bats ( #1187 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* Initial scaffold
* Finish first half of Bats tests
* Add Bats to CI
* Fix CI
* Fix CI
* Fix configuration to set git name and email
* Fix `GIT_CONFIG_{KEY,VALUE}` indexing
* Fix Git config override precedence
* Remove unused and untested function
2025-03-12 18:15:37 +08:00
Edwin Kofler
aadf5f874b
Add stale bot for old PRs ( #1186 )
...
* Add stale bot for old PRs
* Update message
* Update .github/workflows/stale.yaml
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
* Fix stale workflow
* Update .github/workflows/stale.yaml
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
---------
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
2025-03-12 18:14:53 +08:00
Pierre Ayoub
18d1017325
feat(git-bulk): add new option to not follow hidden directories ( #1195 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* feat(git-bulk): add --no-follow-hidden flag
* docs(git-bulk): add --no-follow-hidden description
* docs(man): make ronn
* docs(git-bulk): put --no-follow-hidden at right place in usage()
* refactor(git-bulk): logic optimization
Remove unnecessary subshell
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
* fix(git-bulk): bad test operator
With the Bash' regexp matching operator `=~`, we need to use the Bash
conditional expression evaluation command `[[ ]]`.
* docs(completion.zsh): add --no-follow-hidden and --no-follow-symlink
---------
Co-authored-by: Pierre Ayoub <pierre.ayoub@protonmail.com>
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
2025-03-05 10:39:41 +08:00
Pierre Ayoub
a841845d9a
Feat: allow git-summary showing full path of repository ( #1193 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* feat(git-summary): add --full-path option
* docs(git-summary): add doc for --full-path option
* docs(man): make using ronn
* docs(git-extras-completion.zsh): add --full-path option of git-summary
2025-02-27 14:25:55 +08:00
Pierre Ayoub
8eed5f49ad
feat(git-bulk): add new option to no follow symlinks ( #1194 )
...
* feat(git-bulk): add --no-follow-symlinks flag
* docs(git-bulk): add --no-follow-symlinks description
* docs(man): make ronn
* docs(git-bulk): put --no-follow-symlinks at right place in usage()
* fix(git-bulk): use readarray for find command
1. Use `readarray` such that we can handle paths with spaces
2. Remove the unnecessary `eval`
2025-02-27 14:18:16 +08:00
Pierre Ayoub
64687599ae
docs(git-bulk): Add zsh completion ( #1190 )
...
* docs(git-bulk): Add zsh completion
* docs(git-bulk): Harmonize help strings
* docs(git-bulk): simplify previous bad logic
The previous logic was not allowing to use multiple options (which is
often the case). This was bad because this is my first time with zsh
automcompletion. Without it, the user can use any flag combination --
but at least, he has the freedom.
2025-02-26 12:34:04 +08:00
Pierre Ayoub
8ce63003c0
fix(git-bulk): fix workspace selection when cd fails ( #1197 )
...
* fix(git-bulk): fix workspace selection when cd fails
`cd` may fails for multiple reasons:
- mistake when editing `.gitconfig` manually
- previously existing workspace that have been removed
- ...
Currently, if `cd` fails, the `BulkOp` continue its execution ... in the
workspace defined in a higher directory that where the user, despite the
user specified a specific workspace (`-w`).
The user should be noticed of a failed `cd` (this is really not expected
for a valid configuration) and the operations should stop to not execute
something unexpected.
* fix(git-bulk): replace weak eval for better variable substitution
Get rid of poor `eval` syntax because they are vulnerable to command
injection, which may have unexpected side effects.
However, they enabled a useful feature: using environment variable
(*e.g.*, defined in a `.bashrc`) inside the `.gitconfig` to use dynamic
paths as `bulk` workspaces.
As such, I keep this feature possible by using the Bash's ${!VAR}
syntax, which allows to get the value of one variable using the name of
a another variable. However, arbitrary command injection is not possible
anymore.
* fix(git-bulk): missing check about empty environnement variable
* style(git-bulk): typo
* docs(Commands.md): git-bulk env var feature
* docs(man/git-bulk): git-bulk env var feature
* docs(man/git-bulk): mention .gitconfig for config storage
* style(man/git-bulk): typo
* docs(man/git-bulk): run make/ronn for .1 and .html
2025-02-26 12:33:16 +08:00
Pierre Ayoub
1a9b0c2ab4
fix(git-bulk): quiet find errors by default ( #1196 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2025-02-20 15:47:27 +08:00
Pierre Ayoub
82cc37d0f5
fix(git-bulk): fix a bad integer expression ( #1198 )
...
Fix a logic error inside the `allowedargcount()` function. This function
may be called with one or two arguments. However, no default values are
assigned to `$1` and `$2` that are used inside a numerical comparison.
Therefore, when using a bad number of arguments for the following lines:
```
listall|purge) allowedargcount 1;;
addcurrent|removeworkspace) allowedargcount 2;;
```
Then, we would get the error `[: : integer expression expected`. To fix
this, we assign the 0 default value to `$1` and `$2`, such that we
trigger the error message destined to the user without any integer error
when there is a bad number of argument and that the function is called
with only 1 argument instead of 2.
2025-02-20 15:41:42 +08:00
dependabot[bot]
df53711fc7
chore(deps): bump astral-sh/ruff-action from 2 to 3 ( #1189 )
...
ci / test (push) Has been cancelled
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Bumps [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action ) from 2 to 3.
- [Release notes](https://github.com/astral-sh/ruff-action/releases )
- [Commits](https://github.com/astral-sh/ruff-action/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: astral-sh/ruff-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-29 18:13:50 -08:00
oikarinen
e691826b4b
Fix all ShellCheck errors and add to CI ( #1179 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-12-20 23:16:39 -08:00
dependabot[bot]
fdaca2cd26
chore(deps): bump astral-sh/ruff-action from 1 to 2 ( #1188 )
...
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
ci / lint (push) Has been cancelled
Bumps [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action ) from 1 to 2.
- [Release notes](https://github.com/astral-sh/ruff-action/releases )
- [Commits](https://github.com/astral-sh/ruff-action/compare/v1...v2 )
---
updated-dependencies:
- dependency-name: astral-sh/ruff-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-02 10:06:50 +08:00
oikarinen
3db275cbe2
fix(ci): use poetry ( #1183 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
For managing the python dependencies, running the unit tests and
spellchecker. This makes it easier for everyone to have same environment
as CI. Also includes few cosmetic edits for style for the ci.yml
2024-11-29 10:39:42 +08:00
Edwin Kofler
1345c5977d
Delete etc/test.fish ( #1185 )
2024-11-29 10:39:09 +08:00
oikarinen
2f4b57d52b
feat: add git-continue ( #1176 )
...
ci / lint (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
ci / build (ubuntu-latest) (push) Waiting to run
* feat: add git-continue
Also refactor `git-abort` to parse action from the called file name.
There's a promise for this in #865 but that was a long time ago.
* fix: add git-continue
address review comments, fix the script, remove unnecessary testpath
import.
2024-11-28 16:50:29 +08:00
oikarinen
c23da8ae9c
feat: add ruff linter with ci check ( #1182 )
...
ci / lint (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
ci / build (ubuntu-latest) (push) Waiting to run
* feat: add ruff linter with ci check
Liniting the python files in tests directory would reduce whitespace etc
change and enforce basic coding standard for those. Kind of
opportunistic PR as there might be other opinions about how to deal with
this.
* fix: format with ruff
2024-11-28 10:30:14 +08:00
oikarinen
f1f50ac5ba
fix(ci): missing dollar sign ( #1184 )
...
ci / lint (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
ci / build (ubuntu-latest) (push) Waiting to run
Let's get the ci fixed!
2024-11-27 08:40:33 -08:00
oikarinen
0989b773de
fix(github-actions): changed files output for editorcondig-checker ( #1180 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* fix(github-actions): changed files output for editorcondig-checker
Seems that ci.yml includes a dead dependency action just to get list of
changed files for the PR / push. This seems weird as the repo is all
about git. Propose removing this extra dep with straightforward
implemenation. Also: github runners do have `jq` preinstalled.
* feat(ci): print changed files to log in lint job
2024-11-26 11:53:50 +08:00
罗泽轩
65203312c1
Revert "feat: add ruff linter with ci check ( #1178 )" ( #1181 )
...
ci / lint (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
ci / build (ubuntu-latest) (push) Waiting to run
This reverts commit a2c424aada .
2024-11-25 14:32:54 +08:00
oikarinen
a2c424aada
feat: add ruff linter with ci check ( #1178 )
...
ci / lint (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
ci / build (ubuntu-latest) (push) Waiting to run
* feat: add ruff linter with ci check
Liniting the python files in tests directory would reduce whitespace etc
change and enforce basic coding standard for those. Kind of
opportunistic PR as there might be other opinions about how to deal with
this.
* fix: format with ruff
2024-11-25 10:14:37 +08:00
Guilhem Saurel
d291b2775c
Support GITHUB_TOKEN var for git-fork and git-pull-request ( #1177 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Co-authored-by: 罗泽轩 <4161644+spacewander@users.noreply.github.com>
2024-11-16 10:33:26 -08:00
罗泽轩
fb0bc6950b
Bump version to 7.4.0-dev ( #1175 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2024-10-22 10:07:46 +08:00
罗泽轩
21a086c009
Version 7.3.0 ( #1174 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2024-10-20 18:16:23 +08:00
Jared Baur
8eb1d72f07
Fix stripping trailing forward slash for git-get ( #1172 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-10-18 10:22:05 +08:00
Mattias Andersson
233686d2a2
Change git-cp to use cleaner branch approach ( #1169 )
...
ci / test (push) Has been cancelled
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* Change git-cp to use cleaner branch approach, per https://stackoverflow.com/a/46484848/32841 and https://devblogs.microsoft.com/oldnewthing/20190919-00/?p=102904
* Name the temporary branch to better fit in with git-extras
* Again, git-extras naming is "copy", not "split"
* Make the commit messages more clear
2024-10-08 11:40:43 +08:00
Edwin Kofler
5c3fb1b062
Improve warning for git clear ( #1168 )
ci / test (push) Has been cancelled
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-09-30 10:07:52 +08:00
wyattscarpenter
5ca9360109
Enhance git-repl ( #1160 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-09-22 20:22:58 -07:00
wyattscarpenter
16d1445271
Update some documentation that was out of sync ( #1164 )
...
ci / build (ubuntu-latest) (push) Waiting to run
ci / typo (push) Waiting to run
ci / test (push) Waiting to run
ci / lint (push) Waiting to run
ci / build (macos-latest) (push) Waiting to run
* make instructions easier to copy-paste
* update some documentation that was out of sync
2024-09-22 14:11:31 +08:00
wyattscarpenter
4d2d393142
Use filetimes in check_integrity ( #1162 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* check the file times in check_integrity
* make no-arguments to check_integrity check all commands, and also make check_integrity run git-utimes first
this has the downside that the script now takes a little longer. But the upside that it guarantees more correctness.
* update git-extras
using the incredible power of the new script, I have detected this was out of date, out of sync, etc
2024-09-19 11:27:11 +08:00
wyattscarpenter
ffee88a246
Update git-alias.md: add brs to prevent incorrect line behavior ( #1161 )
...
* Update git-alias.md: add brs to prevent incorrect line behavior
currently these all appear on one line, in the rendered markdown viewer and also in the man page. That isn't what's wanted. What's wanted is for each to be on its own line, which this change implements, using the strategy I found in git-bulk.
* run make on git-alias
2024-09-19 11:19:48 +08:00
wyattscarpenter
da03b7b133
Update git-bulk.md: use correct stylization in synopsis ( #1163 )
...
* Update git-bulk.md: use correct stylization in synopsis
* update derived documents for git-bulk
2024-09-19 11:17:00 +08:00
wyattscarpenter
f0671e2733
Update git-repl.md: typo: "let's" for "lets" ( #1158 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-09-16 12:19:03 -07:00
Revisor
2c161aae02
Update instructions for the OpenSUSE installation ( #1157 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-09-04 13:59:35 +08:00
Wiktor Żurawik
f0b9e18e54
Add pathspec support in git-missing ( #1156 )
...
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
* feat: Add pathspec support in git-missing
Allow to specify a path to limit the commit difference list. This
improvement allows users to focus on changes in specific directories or
files when comparing branches for missing commits.
* refactor: Improve pathspec handling in git-missing
- Change pathspec from string to array to support multiple pathspecs
- Remove unnecessary 'shift' command in argument processing loop
- Simplify git log command execution by using a single codepath
* chore: Update git-missing docs
* chore: Fix a typo in git-missing docs
2024-08-26 10:38:15 +08:00
CodeByZach
c32869de37
feat: add rename-file command ( #1149 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-08-02 01:19:35 -07:00
Matt Headley
e1a4e7195d
Update Commands.md ( #1148 )
ci / lint (push) Has been cancelled
ci / typo (push) Has been cancelled
ci / test (push) Has been cancelled
ci / build (macos-latest) (push) Has been cancelled
ci / build (ubuntu-latest) (push) Has been cancelled
2024-07-05 10:15:22 +08:00
Wen Sun
b766a655ce
fix: git-summary commit count ( #1147 )
...
* fix: git-summary commit count
* fixup! fix: git-summary commit count
2024-06-18 11:13:07 +08:00
Raphael Boidol
e34dea9b7a
tests: update dependencies ( #1142 )
2024-05-03 14:52:28 +08:00
dependabot[bot]
3bac05e690
chore(deps): bump masesgroup/retrieve-changed-files from 2 to 3 ( #1144 )
...
Bumps [masesgroup/retrieve-changed-files](https://github.com/masesgroup/retrieve-changed-files ) from 2 to 3.
- [Release notes](https://github.com/masesgroup/retrieve-changed-files/releases )
- [Commits](https://github.com/masesgroup/retrieve-changed-files/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: masesgroup/retrieve-changed-files
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 09:59:50 +08:00
dependabot[bot]
a7ad306a6b
chore(deps): bump actions/setup-go from 4 to 5 ( #1143 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 4 to 5.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](https://github.com/actions/setup-go/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 09:59:43 +08:00
Raphael Boidol
dcb8bd6c54
ci: add dependabot update for GitHub actions ( #1141 )
2024-04-28 10:06:37 +08:00
Raphael Boidol
a1bf09e8e0
ci: update actions ( #1140 )
2024-04-27 18:04:27 +08:00
罗泽轩
615ea971cb
Bump version to 7.3.0-dev ( #1139 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2024-04-25 10:53:37 +08:00
罗泽轩
e692b9619a
Version 7.2.0 ( #1138 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2024-04-23 19:59:09 +08:00
Leroy
a17d2fb15d
refactor: test utils and simplify the case code ( #1136 )
...
* doc(tests/README.md): explain the unit test process
* test(TempRepository): support to change origin and get filename
* refactor: simplify the case code
* test_git_browse_ci.py
* test_git_browse.py
* fix: rename `test_authors.py` to `test_git_authors.py`
* fix: typo
* fix: log the GitCommandError
2024-02-29 11:11:00 +08:00
Edwin Kofler
52897f73b9
Add --proceed flag to git-delete-squashed-branches ( #1134 ) ( #1135 )
...
Co-authored-by: Norbert Kiesel <nk@iname.com>
2024-02-20 10:47:36 +08:00
Leroy
5f19424a50
test(browse-ci): add unit tests ( #1130 )
2024-01-30 10:43:32 +08:00
Leroy
b54d8c7c50
test(git-browse): add unit tests ( #1127 )
...
* chore: add the dependency testpath@0.6.0
* test(git-browse): add unit tests
* fix: update origin name to `tj/git-extras`
2024-01-05 14:31:37 +08:00
Josh McKinney
9049967232
feat: add reverse option to git-brv ( #1123 )
...
* feat: add reverse option to git-brv
When there are a large amount of branches it is often useful to see the
most recent branches last as they end up closer to the prompt. This adds
a new --reverse / -r option and an environment variable to set the
default behavior (GIT_BRV_REVERSE).
* git-brv: change to git option instead of environment variable and fix typo
* wrap git option in backticks for git-brv and fix git-feature title
* update git-feature docs
* fix missing breaks in git-feature.md
2023-12-16 12:05:52 +08:00
Edwin Kofler
cdbcef3227
Merge pull request #1124 from rasa/patch-3
...
fix(utimes): change /dev/stdin to -
2023-12-14 19:36:32 -08:00
Ross Smith II
a4b637346d
fix(utimes): change /dev/stdin to -
...
As not all environments have /dev/stdin. See https://github.com/ish-app/ish/issues/944
2023-12-13 07:51:50 -08:00
Ross Smith II
1843afb38a
fix(utimes): Support filenames with backspaces, etc. ( #1122 )
2023-12-12 14:50:21 +08:00
Leroy
28b48c7432
chore: add poetry to handle the tests of the git extras ( #1121 )
...
* chore: add poetry to handle the tests of the git extras
* chore(ci): upgrade the deps version
* chore(CONTRIBUTING): remove the test description
2023-12-01 14:25:14 +08:00
Ross Smith II
2c2bd07693
Fix typo in ci.yml ( #1120 )
2023-11-25 14:02:35 +08:00
Ross Smith II
e39b1ab6a6
Fix: harden utimes, use single quotes ( #1109 )
...
* Fix: harden utimes, use single quotes
* Remove passing --posix to bash
* Remove double-quotes and backslashes
* Fix: patch git-utimes (fixes #1118 )
Fixes #1118
* Fix formatting issue in git-utimes
Per https://github.com/tj/git-extras/pull/1109#discussion_r1399965099
2023-11-23 11:39:56 +08:00
Ross Smith II
058cb0763e
Fix: patch git-utimes ( fixes #1118 ) ( #1119 )
...
I don’t have a Mac/BSD system to test, but this should fix #1118
2023-11-23 11:38:33 +08:00
罗泽轩
3d964687fc
add pull request manner ( #1113 )
...
* add pull request manner
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
* Update .github/PULL_REQUEST_TEMPLATE.md
Thanks for @hyperupcall
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
---------
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
Co-authored-by: Edwin Kofler <edwin@kofler.dev>
2023-11-21 10:39:44 +08:00
Edwin Kofler
ca18c6e552
maintenance: Add my name as maintainer in AUTHORS ( #1117 )
2023-11-21 10:32:52 +08:00
Leroy
cf9fe2d23f
test(git-authors): add unit test ( #1098 )
2023-11-18 10:20:19 +08:00
Edwin Kofler
c13ab52138
Add more comprensive dependencies ( #1111 )
2023-11-18 10:19:10 +08:00
René
58c5b50514
fix: git-standup find error (tj#1106) ( #1110 )
2023-11-14 12:05:28 +08:00
Edwin Kofler
5020890c34
Improve defaults for testing suite ( #1104 )
2023-11-11 12:55:46 +08:00
Ross Smith II
4d8060e8cb
feat: Speed up utimes ( #1108 )
2023-11-11 12:52:04 +08:00
Edwin Kofler
7a65311b1c
Overhaul CONTRIBUTING document ( #1103 )
2023-11-11 12:50:50 +08:00
罗泽轩
186bbdcb87
Bump version to 7.2.0-dev ( #1099 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2023-11-02 12:00:12 +08:00
罗泽轩
bfef91f30a
Version 7.1.0 ( #1097 )
2023-10-29 18:52:56 +08:00
罗泽轩
78c5ca28a0
git-cp: don't stop execution when merge.ff is not set ( #1096 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2023-10-26 12:28:19 +08:00
Wei Wu
90221f2149
Allow git cp to create destination folder automatically ( #1091 )
...
* Allow `git cp` to create destination folder automatically
* Replace subshell command with builtin operation to infer DESTINATION_DIR
* Remove destination folder existence check and only create it when the path contains slash(s)
2023-10-25 12:03:36 +08:00
Edwin Kofler
263dcb4a79
fix: Use -iname and expressions instead of -iregex ( #1094 )
2023-10-24 21:52:59 +08:00
罗泽轩
cc1c0e1a38
change installation source from master to main ( #1092 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2023-10-23 12:13:40 +08:00
Leroy
04bf403861
test(git-archive-file): add unit test ( #1084 )
2023-10-17 13:54:09 +08:00
Edwin Kofler
5fe4226865
ci: Use Go v1.20 for running editorconfig-checker ( #1086 )
2023-10-15 10:19:41 +08:00
Leroy
bddb987383
test(git-alias): add its unit test ( #1077 )
2023-09-27 10:21:35 +08:00
Edwin Kofler
df1997c0dc
makefile: Allow bypassing conflict check ( #1080 )
2023-09-26 11:35:24 +08:00
Edwin Kofler
954ba1fb7c
fix: Restore zsh completions to working completion ( #1079 )
2023-09-23 13:38:15 +08:00
Gerrit-K
e4152db482
fix: add missing quote in git-extras-completion.zsh ( #1078 )
...
Broken in #1074
2023-09-22 19:31:09 +08:00
Edwin Kofler
dee7c7f1d0
feat: Implement completion for git coauthor ( #1074 )
2023-09-22 11:58:01 +08:00
Edwin Kofler
e793f8979b
fix: Move improvements via ShellCheck ( #1075 )
2023-09-22 11:57:48 +08:00
Leroy
d2dde69d14
feat(auto-test): CI with pytest ( #1066 )
...
* feat(ci): add pull request action and pytest.ini
* test(git-abort): add its unit test
2023-09-19 11:11:43 +08:00
Austin Ziegler
49650eda62
git-feature: add configurable branch separator ( #1072 )
...
* git-feature: add configurable branch separator
Closes #1069
This allows the use of a separator other than `/` for feature or other
alias branches. While a command-line option has been provided (`-s` or
`--separator`), this will most often be used via
`git-extras.feature.separator`.
* Significant update to bin/git-feature
- Changed option parsing so that `--alias` requires an argument and will
fail with an error unless provided. Applied the same logic to
`--separator`.
- Changed `finish` parsing to capture it as a variable flag during
argument parsing.
This could be extended so that if `finish` is already true, a second
`finish` results in the word being added to the argument list.
```console
$ git feature -- finish remote
$ git feature finish finish remote
```
This has not been done because it is a bit of an inconsistent handling
for documentation purposes.
- Add handling of `--` to permit options or `finish` to be made part of
the feature branch name.
- Since `finish` is now a variable flag, simplify the name-building
logic to always use `concatargs "${argv[@]}"`. This means that
`git feature finish ...` and `git feature ...` behave the same in
terms of feature branch name building.
- Basically rewrote the man page to include better descriptions of the
options as well as adding a GIT CONFIG section and additional EXAMPLES
for the new features/behaviour.
2023-09-19 11:10:59 +08:00
Dan Goodliffe
76cd9bdf45
git-psykorebase: determine branch names with bash pattern substitution ( #1073 )
...
Co-authored-by: Dan Goodliffe <dan.goodliffe@octal.co.uk>
2023-09-17 22:07:32 +08:00
罗泽轩
f95e339c03
git-cp: continue to merge when merge.ff is only ( #1070 )
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2023-09-13 13:02:06 +08:00
Austin Ziegler
db71be578e
git archive-file: change base ARCHIVE_NAME ( #1071 )
...
Closes #1067
This makes the base ARCHIVE_NAME for `git-archive-file` to be the name
of the repo root directory instead of the name of the current directory.
2023-09-13 13:01:37 +08:00
Edwin Kofler
cb29c62c65
readme: Add secondary location of screencast ( #1065 )
...
And, fix other typos.
2023-08-29 19:37:54 +08:00
Edwin Kofler
47e940272a
fix: Improve Bash hygiene ( #1056 )
...
* fix: Improve Bash hygiene
* Update quoting to account for new bugs
* quotes
* fix: Remove extra shellcheck comment
2023-08-18 16:15:40 +08:00
Edwin Kofler
8af43892f6
feat: Implement git-get command ( #1045 )
...
* feat: Add `git-get` command
* Update Commands.md
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
* fix: Use Git config to store value
* improve `git-get` description
* fix: Add `--global` to git invocation
* Enable passing options to `git clone`
* fix: Ordering of checks
---------
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
2023-08-12 13:49:33 +08:00
SchleimKeim
34609bd800
Corrected grammar in bin/git-cp ( #1061 )
...
Corrected grammar in bin/git-cp:41
2023-08-10 15:35:01 +08:00
Edwin Kofler
0b5d2cce55
Improve git-ignore command ( #1047 )
...
* Improve `git-ignore` command
* fix: Improve warnings/errors and modify `not_need_git_repo`
2023-07-13 14:29:39 +08:00
Jobin Kurian
d7fb4495f1
I have made two improvements to the git-bulk: ( #1054 )
...
* I have made two improvements to the git-bulk:
1. Previously, if the "repository.txt" file did not end with a blank line, only three out of four repositories were cloned. This limitation has been fixed.
2. Now, there is support for cloning repositories into custom folder names when using the "repository.txt" file.
* Corrected the code indentation.
* removed the extra condition to check is the line was empty or not.
* Updated the comment for the new changes in the code.
---------
Co-authored-by: Jobin Kurian <jobin.kurian@netcorecloud.com>
2023-07-07 11:08:23 +08:00
Hemanth HM
5e543cb620
Merge pull request #1052 from spacewander/gsm
...
Add typo checker
2023-06-19 08:24:24 -07:00
kang
3a258cbaad
Type properly __gitex_command_successful calls and capitalizate github to GitHub ( #1049 )
...
* Type properly `__gitex_command_successful` calls
* Capitalize github to GitHub
2023-06-19 22:05:30 +08:00
spacewander
ba9e6f0c5c
Add typo checker
2023-06-19 21:51:53 +08:00
Nate Eagleson
5d7ed18c50
Fix comment typo in git-authors ( #1050 )
2023-05-29 10:25:08 +08:00
Edwin Kofler
2d221c1b67
tweak: Fix typos ( #1046 )
2023-05-18 10:19:24 +08:00
Igor Ostapenko
f5bcbe5b0d
Makefile: init SYSCONFDIR before using it ( #1044 )
2023-05-08 09:57:55 +08:00
Igor Ostapenko
6d73f74f83
Makefile: tune MANPREFIX configuration for FreeBSD ( #1043 )
...
We could think of the following use cases:
1. User installs git-extras from official port/pkg. man/man* structure
is quite common among different systems, but location of man/ itself can
be different. FreeBSD Ports framework setups MANPREFIX to PREFIX by
default, i.e. it's /usr/local. The idea is that software may provide
different man/man* sections, with final path being /usr/local/man/man*.
In contrast, git-extras' Makefile process simplifies the things due to
it works with section 1 only, and expects MANPREFIX to be set down to
man/man1 path. For this reason, installation via FreeBSD Ports requires
unconditional man path configuration like this:
ifeq ($(OS), FreeBSD)
MANPREFIX = "$(PREFIX)/man/man1"
Otherwise, the path will be incorrect. And this is how official FreeBSD
port of git-extras has been fixing this difference for many years.
2. End user installs git-extras manually. There are two sub-cases:
2.a. User explicitly defines custom MANPREFIX. Okay, it's user's
decision -- nothing to do here, just follow as is.
2.b. User does not define custom paths, i.e. it's expected to be
installed according to FreeBSD defaults. And default values in
git-extras' Makefile forms the expected correct path.
This change supports all the cases above, with the goal to avoid wrong
man path for the most of the situations. As long as official git-extras
make process tries to support FreeBSD, this change allows to omit extra
patching for FreeBSD Ports framework.
2023-05-05 09:46:38 +08:00
Igor Ostapenko
bbf90c4623
Makefile: set bash COMPL_DIR to FreeBSD expected defaults ( #1042 )
...
See official conventions: https://docs.freebsd.org/en/books/porters-handbook/special/#shell-completion
2023-05-04 11:19:25 +08:00
罗泽轩
2fca5edb7d
Bump version to 7.1.0-dev ( #1041 )
2023-04-26 10:29:51 +08:00
罗泽轩
d7f0fcc546
Version 7.0.0 ( #1040 )
2023-04-24 22:03:26 +08:00
罗泽轩
df825715ba
Need bash 4.0+ ( #1038 )
2023-04-19 16:57:04 +08:00
hemanth.hm
2d5b12c01f
Merge pull request #1036 from spacewander/del
...
git-delete-tag: should not be quoted
2023-03-06 18:02:52 -08:00
spacewander
753555744b
git-delete-tag: should not be quoted
...
Otherwise the whole result will be considered one tag/ref.
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2023-03-07 09:11:37 +08:00
Günther Grill
d5eaa1895b
Add the current branch git summary ( #1034 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2023-02-27 11:26:53 +08:00
Edwin Kofler
b372bab52a
chore: Improve Bash variously ( #1032 )
2023-02-21 10:03:56 +08:00
Günther Grill
a008308267
Change the oneline option to a tebular version in the git summary ( #1031 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2023-02-12 20:14:16 +08:00
Edwin Kofler
5d0fe32617
chore: Remove X-style equality comparisons ( #1028 )
2023-02-03 09:41:52 +08:00
Edwin Kofler
75d0dbff6d
chore: Various Bash improvements ( #1029 )
2023-02-03 09:41:36 +08:00
hemanth.hm
9c3343d1ee
Merge pull request #1030 from hyperupcall/fix-reset-env
...
fix: No longer pollute env with `GREP_OPTIONS`
2023-02-01 16:29:54 -08:00
Edwin Kofler
82daeb7c94
fix: No longer pollute env with GREP_OPTIONS
2023-01-30 21:00:39 -08:00
罗泽轩
73fbf8e08d
tweak editor config ( #1027 )
2023-01-28 17:15:20 +08:00
罗泽轩
36e6de10c8
revert the completion dir change on MacOS ( #1026 )
...
Fix https://github.com/tj/git-extras/issues/1018
2023-01-27 19:38:56 +08:00
Wei Lee
e1138b8190
Update gitignore.io urls to Toptal urls ( #1025 )
2023-01-27 17:49:38 +08:00
Edwin Kofler
589ef33e35
Add EditorConfig file ( #1022 )
2023-01-27 17:47:06 +08:00
Günther Grill
e4e7310c49
Make the bulk output slimmer ( #1020 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2023-01-20 18:18:10 +08:00
Edwin Kofler
4611b24320
chore: Fix more Bash inconsistencies ( #1021 )
2023-01-20 18:17:49 +08:00
Günther Grill
04eb5c04e6
Repo status overview ( #1017 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2023-01-13 13:43:03 +08:00
Piotr Górski
e29dcbb023
Replace egrep with grep -E ( #1019 )
2023-01-12 09:51:22 +08:00
Edwin Kofler
d34fa527a0
chore: More Bash improvements and removing deprecations ( #1016 )
2023-01-10 08:59:43 +08:00
Edwin Kofler
35100b4e6f
chore: Improve quoting and builtin usage ( #1015 )
2023-01-04 08:58:31 +08:00
Günther Grill
cd348dad21
Add summary fields ( #1013 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2023-01-04 08:58:16 +08:00
Günther Grill
aea25d2d4b
Fix quiet mode of the bulk command ( #1014 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
2022-12-28 09:11:53 +08:00
Kurban Mallachiev
4fff03f429
git-summary: remove stray \ in grep call ( #1010 )
2022-12-19 18:02:29 +08:00
Günther Grill
7c4152ce83
Allow to run git-extras within git-bulk ( #1008 )
...
Co-authored-by: guenthgr <guenther.grill@frauscher.com>
Fix https://github.com/tj/git-extras/issues/1007
2022-12-07 13:58:18 +08:00
Áron Hoffmann
960ec8d2fd
Make git-summary accept multiple paths for the --lines argument ( #1005 )
2022-11-22 13:40:37 +08:00
罗泽轩
1426002037
Makefile: ensure bash is used instead of /bin/sh ( #1004 )
2022-11-12 12:19:35 +08:00
zhiyanfoo
193a6dd2a8
fix base branch in the pull-request command ( #1003 )
2022-11-12 12:10:57 +08:00
Joshua Li
2d1aa6daea
Update docs for git abort change ( #1000 )
2022-10-17 15:45:52 +08:00
罗泽轩
71af8cec42
Bump version to 6.6.0-dev ( #997 )
2022-10-10 10:32:37 +08:00
spacewander
3ac3c54b06
Version 6.5.0
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-10-06 20:33:44 +08:00
罗泽轩
584e0283f5
git root: show '.' when using with -r in the root dir ( #995 )
2022-10-06 13:56:07 +08:00
罗泽轩
62aa91f221
git standup: work as expected when no configured ( #996 )
2022-10-06 13:55:45 +08:00
Sascha Andres
25b5d734c7
rephrase question depending on switch ( #984 )
2022-10-06 13:43:35 +08:00
Joshua Li
06aa5dbb1f
Include revert conflicts in git abort ( #992 )
2022-10-06 13:26:20 +08:00
Lone
8058b1718f
fix(git-effort):fork: retry: Resource temporarily unavailable #979 ( #990 )
2022-09-25 20:04:51 +08:00
timfeirg
956781ac1b
git-sync --force will sync without interaction ( #989 )
2022-08-24 14:28:05 +08:00
罗泽轩
3b9ea70e09
Merge pull request #988 from vanpipy/feature/fix-git-cp-did-not-keep-history
...
fix(git-cp): keep the history of the files
2022-08-05 18:17:54 +08:00
vanpipy
6e6f59b264
fix(git-cp): keep the history of the files
2022-08-01 09:12:47 +08:00
罗泽轩
01e2494294
Merge pull request #987 from spacewander/fgz
...
git-bulk: previous refactor redirected $PWD to stderr by mistake
2022-07-22 09:27:10 +08:00
spacewander
e3c8359e4e
git-bulk: previous refactor redirected $PWD to stderr by mistake
...
Fix #986
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-07-19 14:37:33 +08:00
罗泽轩
9accb6bb04
Merge pull request #983 from SuperSandro2000/patch-1
...
Fix lazy loading bash_completion from XDG_DATA_DIRS
2022-07-12 09:04:38 +08:00
Sandro
66961ad491
Fix lazy loading bash_completion from XDG_DATA_DIRS
...
If a bash_completion file should get lazy loaded and is placed in a none standard directory which is listed in XDG_DATA_DIRS it must be placed under share/bash-completion/completions. This is for example used in home-manager.
See 730368b35a/bash_completion (L2531)
2022-07-08 11:49:58 +02:00
罗泽轩
81665422b2
Merge pull request #974 from tfendin/970-standup-author-date
...
#970 standup added -A flag for author date
2022-07-04 10:40:19 +08:00
Tobias Fendin
48ef95d104
Minor changes to man/git-standup.md
2022-07-01 16:39:27 +02:00
Tobias Fendin
bf240df083
Replaced -g and -A with -F gpg|authordate
2022-06-26 12:49:43 +02:00
罗泽轩
d597f684b1
Merge pull request #981 from pbnj/feat/browse-file
...
feat(bin/git-browse): open website at file & line number or range
2022-06-13 09:02:53 +08:00
Peter Benjamin
7acc1de7fa
fix(bin/git-browse): fix commit hash
...
Retrieving commit hashes with the following command is not very reliable for
users who sign their commits with gpg/ssh keys:
```
git log -n1 --format=format:"%H" "${filename}" 2>/dev/null
```
2022-06-09 19:44:02 -07:00
Peter Benjamin
8a6e39d589
fix(bin/git-browse): fix bitbucket url
2022-06-09 19:32:47 -07:00
Peter Benjamin
006549d661
feat: open website at file & line number or range
...
Ported from
f544dadf88/git/bin/git-browse
Closes #980
2022-06-09 19:26:55 -07:00
Tobias Fendin
233b3f0dd4
#970 standup added -A flag for author date
2022-05-14 15:17:58 +02:00
罗泽轩
fdf89cd93f
Merge pull request #972 from wpwoodjr/master
...
update git-utimes.{1,html} to add --newer flag
2022-05-11 14:12:06 +08:00
Bill Wood
95c54f6cdb
update docs due to formatting error in git-utimes man page
2022-05-10 20:03:55 -04:00
Bill Wood
34237934d4
update per shellcheck advice
2022-05-10 19:42:12 -04:00
Bill Wood
8c744569c4
update git-utimes.{1,html} to add --newer flag
2022-05-10 15:30:28 -04:00
罗泽轩
458cb9fdad
Merge pull request #966 from tfendin/git-standup-implicit-week
...
Added config git-extras.standup-implicit-week for git standup
2022-05-09 13:06:33 +08:00
罗泽轩
12b27415ea
Merge pull request #969 from wpwoodjr/master
...
`git-utimes`: add --newer flag and don't touch files in the working tree and index
2022-05-09 13:04:40 +08:00
Tobias Fendin
0701c9e4d7
Don't read git-extras.standup.implicit-week twice in git standup
2022-05-07 12:31:16 +02:00
Bill Wood
42fd8a9e72
quote mod_s and git_s integer vars
2022-05-06 08:33:30 -04:00
Bill Wood
311edadd55
Merge branch 'master' of https://github.com/wpwoodjr/git-extras
2022-05-05 11:21:41 -04:00
Bill Wood
d8dd44d8eb
Merge branch 'tj:master' into master
2022-05-05 11:21:07 -04:00
Bill Wood
41df8dc7f3
updates per request of spacewander
2022-05-05 11:19:30 -04:00
Bill Wood
48beb58670
Update Commands.md
...
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
2022-05-05 10:43:48 -04:00
罗泽轩
5e07a96c57
Merge pull request #965 from tfendin/document-git-standup-w
...
Document git standup -w option
2022-05-05 11:03:53 +08:00
Bill Wood
3ef09dac72
Merge branch 'tj:master' into master
2022-05-02 09:17:00 -04:00
Bill Wood
799aa6e19a
allow modification date updates for symbolic links
2022-05-01 22:01:57 -04:00
Bill Wood
aa6b547f55
add --newer flag and ignore files in the working tree or index
2022-05-01 16:48:57 -04:00
Tobias Fendin
f334dff09c
Documented config git-extras.standup.implicit-week
2022-04-29 14:01:10 +02:00
Tobias Fendin
055110dd35
Minor change to git standup -w documentation
2022-04-29 11:08:51 +02:00
Tobias Fendin
745c7ab500
Improved check if -w or -d was given to git standup
2022-04-29 11:04:04 +02:00
Tobias Fendin
7cb5c55e13
Renamed config git-extras.standup.implicit-week from
...
git-extras.standup-implicit-week
2022-04-29 09:56:26 +02:00
罗泽轩
0d7334a63f
Merge pull request #967 from SukkaW/replace-git-io
...
docs(instllation): replace `git.io`
2022-04-29 14:24:41 +08:00
Tobias Fendin
5754b81047
Documented weekend behaviour of git standup -w
2022-04-28 19:24:12 +02:00
SukkaW
2aadd3ed41
docs(instllation): replace git.io
2022-04-28 11:31:59 +08:00
spacewander
d2a09c1753
Bump version to 6.5.0-dev
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-04-27 21:06:07 +08:00
Tobias Fendin
c7756455cb
Added config git-extras.standup-implicit-week for git standup
2022-04-26 15:45:59 +02:00
Tobias Fendin
4fcd233bf2
Document git standup -w option
2022-04-26 15:24:43 +02:00
spacewander
a73c19c14b
Version 6.4.0
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-04-22 16:32:01 +08:00
罗泽轩
6bf2b0bc4c
Merge pull request #964 from spacewander/bro
...
git-browse/browse-ci: use powershell.exe only when it is available
2022-04-22 16:05:26 +08:00
spacewander
d17f02979e
git-browse/browse-ci: use powershell.exe only when it is available
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-04-19 20:51:22 +08:00
罗泽轩
716459f79d
Merge pull request #944 from SimonTate/feature/sem-ver-prefix
...
git-release: Add prefix to semver
2022-04-18 15:06:34 +08:00
罗泽轩
02263ca949
Merge pull request #957 from jackwasey/quiet-or-stderr
...
quiet option, errors to stderr
2022-04-18 15:06:04 +08:00
Simon Tate
613b909765
git-release: Add prefix to semver
...
To allow different release names other than specifically mm.vv.pp, this
adds the ability to use a prefix too.
For example, you can use:
```
$ git release --semver minor --prefix "prefix-"
```
This would allow the previous tags to be in the form `prefix-0.1.0`. A
more obvious use case for this would be a single letter, such as `v` or
`r` to use tags like: `r0.1.0` or `v0.1.0`.
2022-04-15 13:13:02 +01:00
罗泽轩
f556430122
Merge pull request #959 from pbnj/feat/git-browse-ci
...
feat: implement git-browse-ci
2022-04-13 20:14:53 +08:00
Peter Benjamin
9390d450aa
fix: fix stderr & stdout redirect
2022-04-11 08:51:21 -07:00
罗泽轩
3d6f9456a3
Merge pull request #962 from spacewander/gicc
...
tweak git-ignore/ignore-io
2022-04-11 19:38:56 +08:00
spacewander
27ee8f0132
git-ignore-io: make sure .gi_list is created before access
2022-04-08 21:08:52 +08:00
spacewander
678a0c2e71
git-ignore: the directory of target file may not exist
...
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2022-04-08 21:08:29 +08:00
Peter Benjamin
11a2801231
fix(git-browse-ci): set pipefail
2022-03-20 18:53:05 -07:00
Peter Benjamin
d7565ee844
docs: fix docs
2022-03-19 20:03:44 -07:00
Peter Benjamin
02bbdba792
chore: update docs & completions
2022-03-19 20:00:57 -07:00
Peter Benjamin
f513f58d9e
feat: implement git-browse-ci
2022-03-19 19:39:03 -07:00
Jack O. Wasey
c036c9cc22
quiet option, errors to stderr
2022-03-17 13:25:02 -04:00
罗泽轩
42458d838b
Merge pull request #956 from tfendin/xargs-conflicting-args
2022-03-01 11:44:14 +08:00
Tobias Fendin
b2794c18a1
Removed xargs from git-effort
2022-02-25 16:45:54 +01:00
罗泽轩
760428fa46
Merge pull request #955 from katrinleinweber/summary-highlight-path-opt
2022-02-03 15:01:25 +08:00
Katrin Leinweber
76a3c1f28d
Highlight path option more
2022-01-30 11:45:03 +01:00
罗泽轩
2025ebfb96
Merge pull request #951 from tfendin/local-commits-all-remotes
2022-01-06 11:50:40 +08:00
Tobias Fendin
5467c2ff5a
Updated manual for git local-commits, must track a branch
2022-01-04 17:55:24 +01:00
罗泽轩
843b958c9a
Merge pull request #946 from tfendin/default_branch_logic
2022-01-04 14:11:56 +08:00
Tobias Fendin
7aa178acc9
Made local-commits work with all remotes
2022-01-03 16:45:09 +01:00
Tobias Fendin
2d722c93b8
Updated Readme.md after review
2022-01-03 16:13:28 +01:00
罗泽轩
b772251074
Merge pull request #949 from tfendin/git-ignore-ensure-newline
2022-01-03 21:24:34 +08:00
Tobias Fendin
777fcade17
Added section about main branch to the Readme file
2022-01-01 12:34:22 +01:00
罗泽轩
e370b19190
Merge pull request #947 from tfendin/git-unlock-synopsis-fix
2021-12-31 14:44:36 +08:00
罗泽轩
82b33ac4c7
Merge pull request #948 from tfendin/git-ignore-core-excludesFile
2021-12-31 14:43:55 +08:00
tfendin
fff5fde917
Clarified comment of when newline should be added
...
Co-authored-by: 罗泽轩 <spacewanderlzx@gmail.com>
2021-12-30 12:47:29 +01:00
Tobias Fendin
edffba3c2a
Updated git-extras manual after review.
2021-12-30 12:41:28 +01:00
Tobias Fendin
11640196b2
git-ignore: ensure new patterns comes after a newline
2021-12-29 15:07:19 +01:00
Tobias Fendin
6b0ef19caf
Fixed bug in git-ignore which ignored config core.excludeFiles
2021-12-29 14:33:28 +01:00
Tobias Fendin
d914ed3a89
Spell corr in git-unlock synopsis
2021-12-29 14:08:57 +01:00
Tobias Fendin
b2743d785f
Consider init.defaultBranch in git_extra_default_branch, changed default
...
branch to main.
2021-12-29 13:57:12 +01:00
罗泽轩
2370a4e27b
Merge pull request #885 from spacewander/add_pkg
2021-11-26 12:47:16 +08:00
spacewander
2fdd664594
doc: add packaging status
2021-11-23 09:40:20 +08:00
罗泽轩
b33ec65e5f
Merge pull request #940 from overengineer/feature/magic
...
git-magic: Automated commit messages
2021-10-10 12:09:51 +08:00
overengineer
3f2ad3fa8f
Ignored error when git restore --staged fails when there is no commit
2021-10-08 07:36:29 +03:00
overengineer
e0101470ca
Merge branch 'master' into merge/magic
2021-10-08 07:15:16 +03:00
overengineer
86bb1a6764
Added git-magic command
2021-10-08 07:05:50 +03:00
spacewander
96890821b0
Bump version to 6.4.0-dev
2021-10-03 21:25:29 +08:00
spacewander
0c0be92445
Version 6.3.0
2021-10-02 13:25:45 +08:00
罗泽轩
cc9b972e25
Merge pull request #942 from spacewander/ffgd
2021-10-02 13:06:40 +08:00
spacewander
760e64b864
git-delete-squashed-branches: fail fast if can't checkout
2021-10-01 20:04:28 +08:00
罗泽轩
f6fa554077
Merge pull request #939 from SimonTate/feature/force-clear
...
git-clear: add force option
2021-09-16 15:16:20 +08:00
Simon Tate
bc8876b063
git-clear: add force option
...
Add a new -f/--force option to git-clear to allow usage in scripts,
or without user input.
Add -h/--help/? for help
Also update the manual for git-clear for these changes.
2021-09-14 13:45:50 +01:00
罗泽轩
c30ac80d72
Merge pull request #936 from tfendin/multiline_synopsis_fix
...
Format fix of Synopsis in manuals
2021-08-19 11:27:18 +08:00
罗泽轩
4de7b34c9f
Merge pull request #937 from tfendin/dedup_email_case_insensitive
...
Compare email adresses case insensitive in --dedup-by-email
2021-08-17 08:59:46 +08:00
罗泽轩
0edcf8b7e6
Merge pull request #934 from tfendin/no-merge-summary
...
No merge summary
2021-08-17 08:59:30 +08:00
Tobias Fendin
5feb0db212
Adopted git --dedup-by-email to the project coding style
2021-08-14 14:44:21 +02:00
Tobias Fendin
703a8481c6
summary --dedup-by-email now compares email adresses case insensitive.
2021-08-12 22:05:22 +02:00
Tobias Fendin
3413eeb058
Updated lines under Synopsis in the manuals so they are commonly formatted
2021-08-11 17:33:01 +02:00
Tobias Fendin
a7b7f05b5b
Add incompability check for git summary --line --no-merges, split synopsis in its manual.
2021-08-11 16:38:21 +02:00
罗泽轩
a07c5ece5d
Merge pull request #935 from ax1036/git-un-lock
...
fix git (un)lock with spaced filenames
2021-08-11 21:22:48 +08:00
ax1036
296f2a7ad2
fix git (un)lock with spaced filenames
2021-08-10 14:17:33 +02:00
Tobias Fendin
e9708ba9f4
Updated completion for git summary
2021-08-07 17:31:51 +02:00
Tobias Fendin
3c91de7a1e
Updated documentation for git-summary --no-merges
2021-08-07 17:31:51 +02:00
Tobias Fendin
3c632d9e32
Added option --no-merges to git summary
2021-08-07 17:31:49 +02:00
罗泽轩
3821b2c537
Merge pull request #932 from spacewander/git-su
...
git-summary: support filtering `--line` with path
2021-07-22 10:51:02 +08:00
spacewander
ffad35c8db
git-summary: support filtering --line with path
2021-07-09 17:57:30 +08:00
罗泽轩
d28ad34bcb
Merge pull request #865 from pkitszel/pkitszel-git-abort
2021-07-08 15:00:15 +08:00
Przemek Kitszel
b8e58ee9ba
Add git-abort
...
New subcommand just calls git $op --abort, where $op is current git operation, like rebase
2021-07-05 23:43:39 +02:00
罗泽轩
b225ed4934
Merge pull request #928 from duckunix/master
2021-06-09 21:03:33 +08:00
Don Harper
30383f9551
Update point to github docs for forks from API
2021-06-07 20:12:22 -05:00
Don Harper
1f72512ef0
update working
2021-06-06 21:26:01 -05:00
Don Harper
b8b02d8ef1
git-fork | Update man/md/html pages to talk about need of the github personal access token
2021-06-04 23:04:31 -05:00
Don Harper
d8b1007f68
Updated documentation (AUTHORS)
2021-06-04 20:12:41 -05:00
Don Harper
64993dbc7f
bin/git-fork | updating for feedback from PR #928
...
Added support for pulling personal-access-token, borrowing from git-pull-request
2021-06-04 20:08:07 -05:00
Don Harper
4a4c5296f3
git-fork | update to match REST-API auth standards as of 2021-06
...
- Removed prompt for OATH Token
- Change prompt from 'password' to 'GitHub Personal Access Token'
2021-06-03 20:19:56 -05:00
罗泽轩
206fe7ccfb
Merge pull request #926 from nicokosi/patch-1
2021-06-02 09:40:28 +08:00
Nicolas Kosinski
f1eab6a8a7
Update install doc: Homebrew is not just for macOS
...
I can confirm it also works Linux. I just installed `git-extras` via `Homebrew` on my Ubuntu machine:
```sh
$ uname -srv
Linux 5.8.0-53-generic #60~20.04.1-Ubuntu SMP Thu May 6 09:52:46 UTC 2021
$ brew install git-extras
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 2 taps (homebrew/cask and homebrew/core).
==> New Formulae
code-minimap principalmapper pywhat
==> Updated Formulae
Updated 70 formulae.
==> Updated Casks
Updated 36 casks.
==> Downloading https://ghcr.io/v2/linuxbrew/core/git-extras/manifests/6.2.0
######################################################################## 100.0%
==> Downloading https://ghcr.io/v2/linuxbrew/core/git-extras/blobs/sha256:5a86
==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/
######################################################################## 100.0%
==> Pouring git-extras--6.2.0.x86_64_linux.bottle.tar.gz
==> Caveats
To load Zsh completions, add the following to your .zshrc:
source /home/linuxbrew/.linuxbrew/opt/git-extras/share/git-extras/git-extras-completion.zsh
==> Summary
🍺 /home/linuxbrew/.linuxbrew/Cellar/git-extras/6.2.0: 146 files, 388.4KB
```
2021-06-01 14:58:26 +02:00
罗泽轩
cd8fe4f6e2
Merge pull request #924 from allejo/feature/delete-squashed-branches
2021-05-27 20:13:41 +08:00
Vladimir Jimenez
bebcbd11ca
delete-squashed-branches: Make side-effect clear in docs
2021-05-25 20:50:04 -07:00
Vladimir Jimenez
fb1e5db6d7
delete-squashed-branches: Make branch checkout side effect clear
2021-05-24 13:55:32 -07:00
Vladimir Jimenez
910242c92b
Add delete-squashed-branches command
2021-05-24 00:13:57 -07:00
罗泽轩
48b2c8fd37
Merge pull request #923 from CleanMachine1/patch-1
2021-05-24 12:16:20 +08:00
CleanMachine1
d86abec6a2
Picture is broken
2021-05-22 19:57:11 +01:00
罗泽轩
1894f453f6
Merge pull request #920 from matan129/patch-1
2021-04-22 15:16:20 +08:00
Matan Rosenberg
c35c84a279
Ignore checked-out branches on different worktrees
2021-04-20 09:49:23 +03:00
罗泽轩
a62a67ef5f
Merge pull request #917 from heirecka/remove-git-line-summary-man-page
...
doc: Remove man page for git-line-summary
2021-03-27 10:21:50 +08:00
spacewander
d0c40851c0
Bump version to 6.3.0-dev
2021-03-27 10:11:31 +08:00
Heiko Becker
52ada403ef
doc: Remove man page for git-line-summary
...
git line-summary was deprecated in favour of git summary --line and
removed with d4de567ca7 .
2021-03-26 23:59:33 +01:00
spacewander
b9786c763f
Version 6.2.0
2021-03-26 11:09:34 +08:00
罗泽轩
6880198fda
Merge pull request #915 from spacewander/typo
2021-03-26 10:30:54 +08:00
罗泽轩
687a5607dc
Merge pull request #914 from spacewander/xch
2021-03-26 10:30:40 +08:00
罗泽轩
7b1a062e93
Merge pull request #916 from spacewander/utimes
...
fix(git-utimes): make sure it work under OS X.
2021-03-26 10:30:27 +08:00
spacewander
6a15a5339b
fix(git-utimes): make sure it work under OS X.
2021-03-25 14:50:13 +08:00
spacewander
a424d0915e
chore: fix typo
2021-03-25 11:40:23 +08:00
spacewander
458727bafb
fix(git-ignore): use $XDG_CONFIG_HOME only when it is defined
2021-03-25 11:31:11 +08:00
罗泽轩
d7b527c1ae
Merge pull request #910 from 0xflotus/patch-1
...
docs: fix typo
2021-03-13 21:50:37 +08:00
0xflotus
0fad3cfd03
fixed small error
2021-03-12 22:46:38 +01:00
hemanth.hm
7d9e05062e
Merge pull request #908 from nodeg/fix_installation
...
Minor fixes for Installation.md
2021-03-08 13:01:37 -08:00
Dominik Gedon
c8d9374491
Fix grammer
2021-03-05 18:27:30 +01:00
Dominik Gedon
f3028db073
Correct macOS spelling
2021-03-05 18:25:35 +01:00
Dominik Gedon
d73bfbb98b
Correct openSUSE spelling and update Version
2021-03-05 18:24:15 +01:00
hemanth.hm
42e1f9d5c6
Merge pull request #907 from bbenzikry/zinit-docs
...
Update zplugin docs --> zinit
2021-03-01 22:13:22 -08:00
Beni Ben Zikry
b7841ad3aa
Update zinit docs
2021-03-01 10:18:43 +02:00
罗泽轩
4ea6cf0221
Merge pull request #906 from prestontim/master
...
Remove bug|refactor|chore from documentation
2021-03-01 09:59:33 +08:00
Tim Preston
8f60fb29f4
Remove bug|refactor|chore from documentation
2021-02-26 11:10:56 -06:00
罗泽轩
96b95392ac
Merge pull request #899 from spacewander/git-summary
...
git-summary: reject invalid option
2020-12-24 16:04:25 +08:00
spacewander
16c1f0d3dc
git-summary: reject invalid option
...
Argument starts with '-' can't be committish, so we can safely reject
it.
2020-12-16 18:01:30 +08:00
spacewander
c675d0afb8
ci: use checkout@v2
2020-12-14 11:19:15 +08:00
罗泽轩
4c82bbecc3
Merge pull request #897 from spacewander/ga
...
ci: move to GitHub Action
2020-12-14 10:26:38 +08:00
spacewander
faa56b1bcb
ci: move to GitHub Action
2020-12-14 10:25:51 +08:00
罗泽轩
e6caa931a5
Merge pull request #882 from vt-alt/git-utimes
...
git-utimes: Change files modification time to their last commit date
2020-11-29 11:40:12 +08:00
罗泽轩
6b45d4322b
Merge pull request #896 from Aloxaf/fix_completion
...
fix: zsh completion of git-coauthor command
2020-11-27 09:49:02 +08:00
Aloxaf
e92d54cadb
fix: zsh completion of git-coauthor command
2020-11-26 22:30:05 +08:00
罗泽轩
444722cf38
Merge pull request #895 from vanpipy/feature/optional-start-point-when-creeate-branch
...
feat(#861 ): add optional parameter --from to set the start point
2020-11-21 11:25:08 +08:00
vanpipy
b2b5c97105
doc: add the usage of the parameter --from for create-branch and feature
2020-11-19 13:46:10 +08:00
vanpipy
d3772eb469
feat(feature): checkout from start point if exists
2020-11-19 09:16:37 +08:00
vanpipy
41732e4113
feat(create-branch): add optional --from to set the start point
2020-11-19 09:16:33 +08:00
罗泽轩
18bcfcd38e
Merge pull request #894 from alessandro308/merge-into-stashed
...
Merge-into: add stash before to checkout
2020-11-16 19:16:18 +08:00
Alessandro Pagiaro
aa5a380996
Merge-into: add stash before to checkout
2020-11-16 11:33:59 +01:00
罗泽轩
68e6a15401
Merge pull request #892 from equt/#891
...
[ fix #891 ] Cast branch output if HEAD not exists
2020-11-14 10:19:04 +08:00
罗泽轩
05ce91fb9e
Merge pull request #888 from equt/master
...
Add support for XDG specifications
2020-11-14 10:17:53 +08:00
罗泽轩
d2a159ed25
Merge pull request #889 from vanpipy/feature/delete-tag
...
feat(delete-tag): get default remote from git config if exists
2020-11-12 09:19:00 +08:00
equt
f66f7e484f
[ fix #891 ] Cast branch output if HEAD not exists
2020-11-11 22:38:19 +08:00
equt
fca42774f8
[ feat ] Quote the default_path var
2020-11-11 22:30:10 +08:00
equt
ef13ed06a3
[ fix ] Quote env var
2020-11-11 22:30:10 +08:00
equt
fa35cdab99
[ fix ] Quote the XDG_CACHE_HOME
2020-11-11 22:30:10 +08:00
equt
8ed7da3f02
[ feat ] Use default global ignore file
2020-11-11 22:30:10 +08:00
Sinos
54f8205478
[ refactor ] Optimize var not existing check
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2020-11-11 22:30:10 +08:00
equt
19531065ca
[ fix ] Fix hardcode ignore list file path
2020-11-11 22:30:10 +08:00
equt
4f5b5ccd48
[ feat ] Add XDG_CACHE_HOME check
2020-11-11 22:30:09 +08:00
罗泽轩
ad8c77bfa3
Merge pull request #890 from zhujian0805/master
...
adding a format for git-contrib
2020-11-08 22:25:30 +08:00
James Zhu
8490a50304
adding a format for git-contrib
2020-11-08 20:21:32 +08:00
Vitaly Chikunov
aa174b3905
git-utimes: Change files modification time to their last commit date
...
Signed-off-by: Vitaly Chikunov <vt@altlinux.org>
2020-11-08 14:04:41 +03:00
vanpipy
c006e5ece8
feat(delete-tag): get default remote from git config if exists
2020-11-08 10:41:50 +08:00
罗泽轩
171d06965e
Merge pull request #884 from elonderin/fix-squash-help
...
Updates git-squash.md: fixes help which was unclear and had remnants …
2020-10-14 09:14:58 +08:00
thomas menzel
6d9f861d0e
squash help: re-ran make for extras and squash
2020-10-13 23:57:56 +02:00
thomas menzel
041e3fd8da
squash help: ran make man/git-extras.{html,1}
2020-10-12 23:37:15 +02:00
thomas menzel
35d544b8c6
squash help: ran make man/git-squash.{html,1}
2020-10-12 07:45:57 +02:00
tom
da34968ec3
squash help: corrects option name in PR
2020-10-11 14:16:52 +02:00
thomas menzel
35d44c97cc
Merge remote-tracking branch 'u/master' into HEAD
2020-10-11 14:12:32 +02:00
罗泽轩
317eea64db
Merge pull request #886 from TheTechOddBug/master
...
Fixing summary for --squash-msg option.
2020-10-10 09:09:50 +08:00
José María Gutiérrez @TheTechOddBug
2ef6ea4b96
Fixing summary for --squash-msg option.
2020-10-10 01:08:32 +02:00
elonderin
c41f0164cc
Updates git-squash.md: fixes help which was unclear and had remnants from copied template it appears
2020-10-05 17:00:02 +02:00
spacewander
3cc866dd97
Bump version to 6.2.0-dev
2020-09-28 17:47:23 +08:00
spacewander
2929c41637
Version 6.1.0
2020-09-26 20:11:50 +08:00
罗泽轩
64e76db350
Merge pull request #878 from spacewander/default_br
...
change: migrate default branch
2020-09-26 19:58:06 +08:00
罗泽轩
74fe4f6aba
Merge pull request #880 from spacewander/fix_bsd_sed_regex
...
git-info: fix regex for bsd sed
2020-09-25 15:22:26 +08:00
spacewander
2e610158a8
git-info: fix regex for bsd sed
2020-09-24 23:10:23 +08:00
罗泽轩
65be1e5f8f
Merge pull request #879 from spacewander/pass_arg
...
feat: pass origin argument down to git execution
2020-09-24 17:22:42 +08:00
spacewander
9683fb6510
feat: pass origin argument down to git execution
2020-09-24 09:40:43 +08:00
spacewander
964663f1a4
change: migrate default branch
...
Close #877 .
2020-09-23 16:19:41 +08:00
罗泽轩
e9668cc04b
Merge pull request #872 from yuravg/pr_typo
...
git-pr: fix doc format
2020-09-11 09:47:05 +08:00
Yuriy VG
8a487271cb
doc: fix typo
2020-09-10 22:20:18 +03:00
罗泽轩
1a4cd4ca3d
Merge pull request #869 from spacewander/typo
...
remove git-back
2020-08-29 22:50:07 +08:00
spacewander
e116406ff1
git-back: removed
2020-08-28 22:23:41 +08:00
spacewander
34ba1eb083
fix typo
2020-08-27 11:03:06 +08:00
罗泽轩
6a455e7d29
Merge pull request #868 from spacewander/zsh_completion
...
Zsh completion
2020-08-27 10:40:41 +08:00
spacewander
6afc2fb4a8
sort completion in alphabetical order
2020-08-25 14:53:11 +08:00
spacewander
c56b61d2bd
remove incorrect completion
2020-08-25 14:50:56 +08:00
spacewander
c386733efd
git-info: add zsh completion
2020-08-25 14:45:12 +08:00
罗泽轩
ecf0f4847f
Merge pull request #867 from yuravg/pr2source
...
Improved the 'git-info' command (color, submodule, config)
2020-08-25 11:21:58 +08:00
Yuriy VG
e031dc54e9
doc: fix argument description
2020-08-24 11:34:11 +03:00
Yuriy VG
8e519e3e66
git-info: moved argument checking
2020-08-24 11:09:27 +03:00
Yuriy VG
c52ba59d10
git-info: fix namespace
...
should use 'git-extra' name to configure via git config options.
2020-08-24 10:48:50 +03:00
Yuriy VG
9ee5d06469
doc: update derived git-info files
2020-08-21 19:22:07 +03:00
Yuriy VG
ec417833ee
doc: add description for git-info
2020-08-21 19:22:07 +03:00
Yuriy VG
b4b81e290e
Add bash completion for git-info
2020-08-21 19:22:07 +03:00
Yuriy VG
c92f03d303
git-info: colorized headers
2020-08-21 19:22:04 +03:00
Yuriy VG
af06d49c33
git-info: extend configuration and commit information
...
add ability to customize git-config, git-log commands from .gitconfig file
2020-08-21 17:57:07 +03:00
Yuriy VG
e7270b3667
git-info: remove notes about git-log, git-show
...
auxiliary message distracting from the main message
2020-08-21 16:14:54 +03:00
Yuriy VG
87cff6d5cb
git-info: add info about submodules
2020-08-21 16:10:06 +03:00
Yuriy VG
aaf9ef343b
git-info: fix indentation, remove comment
2020-08-21 16:01:11 +03:00
罗泽轩
73cc666030
Merge pull request #864 from v-y-a-s/pr
...
Updated the git pull-request command to use personal access token instead of basic auth.
2020-08-11 09:14:11 +08:00
vyas
eaeeef3b80
Grammar correction
2020-08-07 11:16:00 +05:30
vyas
73bb1e0f59
Remove $user
2020-08-06 13:06:28 +05:30
vyas
238038139d
corrections
2020-08-06 13:03:13 +05:30
vyas
85e1c4ff0a
Update doc
2020-08-05 16:53:36 +05:30
vyas
a0d7039482
fix config message name
2020-08-05 16:22:44 +05:30
vyas
49a34037ad
Remove comments
2020-08-05 16:19:51 +05:30
vyas
2dc9c26e36
PR test
2020-08-05 11:59:43 +05:30
罗泽轩
2f3772b09a
Merge pull request #860 from soraxas/implement-fish-completions
...
Implement fish completions file
2020-07-30 09:31:21 +08:00
Tin Lai
4a7fcb7d1c
implement fish completions file
...
Signed-off-by: Tin Lai <oscar@tinyiu.com>
2020-07-27 15:45:37 +10:00
罗泽轩
6e77d950eb
Merge pull request #853 from bethesque/feat/git-browse-with-multiple-remotes
...
feat(browse): select remote of current branch, fallback to origin
2020-07-27 09:24:28 +08:00
Beth Skurrie
572ae0dd46
feat(browse): automatically select origin remote if one exists, fallback to first otherwise
2020-07-26 08:22:43 +10:00
罗泽轩
a0a32abc0b
Merge pull request #854 from bethesque/fix/git-browse-sed-on-mac
...
fix(browse): update sed pattern to work on mac
2020-06-23 10:08:03 +08:00
Beth Skurrie
edf7b060d2
fix(browse): update sed pattern to work on mac
2020-06-23 09:31:21 +10:00
spacewander
2076ac9c38
Bump version to 6.1.0-dev
2020-06-22 21:31:49 +08:00
spacewander
4c9d59059e
Version 6.0.0
2020-06-22 11:18:23 +08:00
spacewander
97de52a3be
doc: remove gitter
...
We don't hang on it any more.
2020-06-22 10:59:20 +08:00
spacewander
a994411e58
git-cp: remove trailing space
2020-06-22 09:59:59 +08:00
罗泽轩
f06ba9f70b
Merge pull request #849 from vr8hub/undodoc
...
Correct undo documentation to match code order of parameters
2020-06-21 17:42:22 +08:00
罗泽轩
5a79873bd6
Merge pull request #850 from vr8hub/newundo
...
Modify to work when only a single commit, add parameter checks
2020-06-21 17:41:33 +08:00
vr8ce
27f42beb81
Tighten numeric regex
2020-06-19 22:56:55 -05:00
vr8ce
6ccd2fa439
Cleanup code
2020-06-18 23:38:55 -05:00
vr8ce
9dca93eeb2
Modify to work when only a single commit, add parameter checks
2020-06-17 20:11:07 -05:00
vr8ce
11cc90d5f6
Correct undo documentation to match code order of parameters
2020-06-15 23:13:05 -05:00
罗泽轩
90495d0d5e
Merge pull request #847 from Amorymeltzer/patch-1
...
docs: Note flag for git extra --version
2020-06-05 09:27:27 +08:00
Amory Meltzer
f2136ec433
docs: Note flag for git extra --version
2020-06-04 14:53:23 -04:00
罗泽轩
a04f27b255
Merge pull request #846 from spacewander/note
...
doc: add a note about the package maintainer.
2020-06-04 15:30:58 +08:00
spacewander
f27875d5bc
doc: add a note about the package maintainer.
2020-05-31 11:31:25 +08:00
罗泽轩
cb66d36434
Merge pull request #844 from ihoro/installation-via-freebsd-pkg
...
docs: mention installation via FreeBSD pkg
2020-05-31 11:13:21 +08:00
罗泽轩
d4ff718ac3
Merge pull request #843 from spacewander/remove_git_feature
...
break change: remove docs and other stuff of git-feature's alias
2020-05-31 11:10:57 +08:00
spacewander
23fcac8c4f
break change: remove docs and other stuff of git-feature's alias
2020-05-31 11:03:11 +08:00
罗泽轩
fa8165ba7e
Merge pull request #845 from alerque/remove-feature-aliases
...
Remove scripts that are mere alias wrappers for git-feature
2020-05-31 11:00:15 +08:00
Caleb Maclennan
db9ca55c71
Remove scripts that are mere alias wrappers for git-feature
...
Notably `git-bug` clobbers a very popular other project of the same name.
Having lightweight wrapper scripts clogging up the subcommand namespace
makes it awkward to make use of this project wholesale instead of
piecemeal. These function can be implemented by users with git aliases
very easily.
2020-05-30 15:32:01 +03:00
phigoro
672e330f47
docs: mention installation via FreeBSD pkg
2020-05-30 14:20:10 +03:00
罗泽轩
852e630314
Merge pull request #840 from spacewander/archive-invalid
...
git-archive-file: rename invalid chars in the output filename
2020-05-27 09:14:57 +08:00
罗泽轩
54199b8d08
Merge pull request #841 from sgleizes/bugfix/git-release-zsh-completion
...
Fix missing newline escapes in git-release zsh completion
2020-05-25 09:05:25 +08:00
sgleizes
edc4814ced
Fix missing newline escapes in git-release zsh completion
2020-05-23 13:36:13 +02:00
spacewander
8f133a32ba
git-archive-file: rename invalid chars in the output filename
...
Fix #838 .
2020-05-22 10:40:29 +08:00
罗泽轩
4eb4e7ffdb
Merge pull request #837 from jldugger/jldugger/pr-remote-default
...
add a default for the remote to fetch a pr from
2020-05-16 12:12:21 +08:00
罗泽轩
acf4123234
Merge pull request #836 from jldugger/jldugger/feature-config
...
add a config setting for prefix
2020-05-15 12:41:57 +08:00
Justin Dugger
9e843da98d
add a default for the remote to fetch a pr from
2020-05-14 00:32:48 -07:00
Justin Dugger
e8ee36733f
add a config setting for prefix
2020-05-14 00:19:54 -07:00
罗泽轩
db3389a3cc
Merge pull request #829 from cpradog/master
...
add squash option to git-feature
2020-04-05 17:15:02 +08:00
Carlos Prado
3583825137
update zsh completion for bug and refactor commands
2020-04-05 03:32:27 +02:00
Carlos Prado
31079e0a60
updated zsh completion script
2020-04-05 03:29:24 +02:00
Carlos Prado
45eed8f166
updated git-feature documentation
2020-04-05 02:43:59 +02:00
Carlos Prado
c038741194
add squash option to git-feature
2020-04-04 00:28:29 +02:00
Carlos Prado
63eaba4572
add squash option to git-feature
2020-04-04 00:27:58 +02:00
罗泽轩
f2a3e50cab
Merge pull request #826 from Natim/feature/825/add-git-cp
...
Add git-cp
2020-03-23 15:19:27 +08:00
Rémy HUBSCHER
91b3e47243
Simplify the code.
2020-03-20 14:11:17 +01:00
Rémy HUBSCHER
b85fc019ca
Signal if the destination already exists.
2020-03-20 09:43:24 +01:00
Rémy HUBSCHER
2c9b071fde
@spacewander review.
2020-03-20 09:37:43 +01:00
罗泽轩
6e83793dda
Merge pull request #827 from Natim/fix-man-page-for-git-psykorebase
...
Update man page export for git-psykorebase with ronn-ng 0.9.0
2020-03-20 09:14:54 +08:00
Rémy HUBSCHER
2a5c08aaf8
Fix checks.
2020-03-19 16:59:09 +01:00
Rémy HUBSCHER
5afaa731e0
Update man page export for git-psykorebase with ronn-ng 0.9.0
2020-03-19 16:57:51 +01:00
Rémy HUBSCHER
bea25d1ceb
@mschneiderwind review.
2020-03-19 16:11:39 +01:00
Rémy HUBSCHER
739ca052b4
Add documentation.
2020-03-19 16:10:20 +01:00
Rémy HUBSCHER
629fc03581
Add first version of git-cp
2020-03-19 15:49:07 +01:00
罗泽轩
dd0337c3cf
Merge pull request #824 from mapitman/master
...
Fix documentation for git-browse
2020-03-19 11:30:58 +08:00
Mark Pitman
6b4188404b
Fix documentation for git-browse
2020-03-18 09:55:40 -07:00
罗泽轩
79ae65fe64
Merge pull request #823 from mapitman/master
...
Add git-browse command
2020-03-18 14:06:33 +08:00
Mark Pitman
f6cf59c380
Implement suggested changes from code review
...
Use bash string replacement instead of sed for simple replacement
Use http URLs instead of https (sites that reuqire https should be
auto-redirecting anyway)
#666
2020-03-17 21:12:07 -07:00
Mark Pitman
362a0c29ae
Add git-browse command
...
Handles git@server and https://server remotes.
Allows specification of the remote to open
Closes #666
2020-03-15 01:40:09 -07:00
罗泽轩
be50c2f3f5
Merge pull request #820 from spacewander/deprecate_git_back
...
change: deprecate git-back
2020-02-25 21:23:29 +08:00
spacewander
3917c774ec
change: deprecate git-back
...
Thanks @vr8hub for the report.
git-back will be removed in the next next release.
2020-02-23 11:41:54 +08:00
罗泽轩
b708a8a4d3
Merge pull request #817 from bric3/adds-git-brv
...
Fixes #770 : Adds git-brv
2020-01-15 18:09:48 +08:00
Brice Dutheil
80cd52701e
Fixes #770 : Adds git-brv
2020-01-15 10:46:19 +01:00
罗泽轩
265b03e400
Merge pull request #816 from spacewander/git-sed-pathspec
...
git-sed: limit paths via pathspec
2020-01-08 10:08:37 +08:00
spacewander
4b9f1619f6
git-sed: limit paths via pathspec
2020-01-03 18:22:34 +08:00
spacewander
6438dee914
Bump version to 5.2.0-dev.
2019-12-23 18:28:13 +08:00
spacewander
2a65a7aa8b
Version 5.1.0
2019-12-21 13:53:03 +08:00
罗泽轩
2c689db6d7
Merge pull request #813 from spacewander/release-fix
...
some fixes before release
2019-12-21 13:42:51 +08:00
spacewander
2067d26276
git-bulk: support cloning from a relative path
2019-12-21 13:35:59 +08:00
spacewander
aefa3c9ff6
git-standuo: clarify the -a option
2019-12-21 13:12:10 +08:00
spacewander
3b2f6611d6
git-paste: check pastebinit before running it
...
We don't force to install pastebinit because it is not widely used in
git-extras.
2019-12-20 22:08:02 +08:00
spacewander
ecff5e1a3c
git-coauthor: quote variable in the comparison
2019-12-20 18:22:06 +08:00
spacewander
eb33c9bf5a
git-bulk: don't disappoint shellcheck
2019-12-20 18:21:29 +08:00
罗泽轩
bd8fa031cc
Merge pull request #812 from spacewander/git-sed-escape
...
git-sed: escape special characters for tr
2019-12-18 11:25:18 +08:00
spacewander
4d5b53aea2
git-sed: escape special characters for tr
...
Some special patterns like `n-l`, `[:alpha:]` need to be escaped to avoid
confusing tr.
2019-12-16 22:19:30 +08:00
罗泽轩
69e96cba95
Merge pull request #811 from eli-schwartz/portability
...
build: do not require the nonstandard and unpredictable 'which' utility
2019-12-13 10:01:41 +08:00
Eli Schwartz
e836b6ce4c
build: do not require the nonstandard and unpredictable 'which' utility
...
This may not be installed on various systems, and it's difficult to test
for the availability of the tool you need, if the check program itself
does not exist.
The POSIX 2008 specification mandates the `command -v` builtin; bash is
a POSIX 2008 compliant shell, and this builtin has worked since bash 1.x
anyway.
A side benefit of using the POSIX portable option is that it requires
neither an external disk executable, nor (because unlike "which", the
exit code is reliable) a subshell fork. This therefore represents a mild
speedup.
2019-12-12 00:13:30 -05:00
Roshak Zarhoun
16bb0df9f9
add repositories to workspace from source ( #804 )
...
* make addworkspace clone multiple repositories into ws from list of URLs in a file
* extend usage
* check if source is file or URL
* update Commands.md
* checked allwedargcount function
* resolved merge conflicts and change requests
* update manuals
* change the order of error and usage in allwedargcount()
* improve URL matcher. include also SSH protocol
2019-12-10 21:57:32 +08:00
罗泽轩
bb7d389084
Merge pull request #810 from roxchgt/read-not-need-repo
...
read COMMANDS_WIHOUT_REPO from not_need_git_repo file
2019-12-10 11:31:22 +08:00
roxchgt
7a66b157f0
read COMMANDS_WIHOUT_REPO from not_need_git_repo file
2019-12-09 17:13:56 +01:00
罗泽轩
2fe53ac791
Merge pull request #806 from spacewander/retire_make_with_msys
...
retire the msysgit installation script
2019-12-07 19:22:03 +08:00
罗泽轩
d0636d2b07
Merge pull request #808 from drasill/master
...
git-ignore: support non-default .git directory
2019-12-07 19:13:31 +08:00
Christophe Badoit
41ebe0e0bf
git-ignore: support non-default .git directory
...
useful for submodules.
Closes tj/git-extras#807
2019-12-06 17:23:19 +01:00
spacewander
6b8729a819
retire the msysgit installation script
...
The Makefile.msys is out of sync. Use install.cmd instead.
2019-12-06 16:44:30 +08:00
罗泽轩
29f6d0e0e0
Merge pull request #802 from spacewander/fix-git-bulk-arg-count
...
fix bug in allowedargcount() to not execute command if wrong args count
2019-12-05 18:26:57 +08:00
spacewander
83349426d1
git-bulk: line break is need in the SYNOPSIS doc section
2019-12-02 16:10:15 +08:00
roxchgt
45647fdab3
fix bug in allowedargcount() to not execute command if wrong args count
2019-12-01 11:33:59 +08:00
罗泽轩
67c2bf595f
Merge pull request #801 from spacewander/fix-delete-submodule
...
git-delete-submodule: don't remove the history of deleted submodule
2019-12-01 11:31:22 +08:00
spacewander
4d4b87ccb8
git-delete-submodule: don't remove the history of deleted submodule
...
This hurted 'git blame' and other git operation which relies on history.
Fix #799 .
2019-11-29 17:43:22 +08:00
罗泽轩
292149c46f
Merge pull request #798 from wolviecb/signed_release
...
Signed release
2019-11-26 17:27:33 +08:00
Tom Andrade
704b1b4fdd
Add flags -s and -u for signed tags
2019-11-26 08:31:06 +01:00
罗泽轩
a6a1754093
Merge pull request #795 from spacewander/git-squash-commit-msg
...
Git squash commit msg
2019-11-05 18:12:43 +08:00
罗泽轩
b0d3a77ac0
Merge pull request #793 from spacewander/git-standup-group-by-branch
...
git-standup: add option '-B' to group the commits by branch
2019-11-05 17:57:49 +08:00
spacewander
46ea733983
git-squash: miss completion script change
2019-11-05 10:35:36 +08:00
spacewander
f4e313d3f2
git-squash: clean up shellcheck warnings
2019-11-05 10:30:37 +08:00
spacewander
1924eb9197
git-squash: add --squash-messages to concat commit messages into one.
2019-11-05 10:28:51 +08:00
spacewander
952d1eb76f
git-standup: add option to limit the number of commit
2019-11-04 11:36:29 +08:00
罗泽轩
f2934bd0bd
Merge pull request #789 from go2null/delete-empty-gitmodules
...
Delete empty gitmodules
2019-11-03 11:42:18 +08:00
spacewander
677f570f34
git-delete-submodule: comment the DUMMY prefix and ignore the output of grep -v.
2019-11-03 11:30:03 +08:00
spacewander
227c19bb67
git-standup: add separate newline between the output
2019-11-03 10:53:40 +08:00
go2null
1f605df053
add PR changes
2019-11-02 04:32:36 -04:00
go2null
17d1a471a4
add --force option to continue on error
2019-11-02 04:32:36 -04:00
go2null
f00c1389d6
improve readability
2019-11-02 04:32:36 -04:00
go2null
4f35f8cad8
display git submodule status output before exiting
2019-11-02 04:32:36 -04:00
go2null
5ea4a626a6
check git submodule status before declaring success
2019-11-02 04:32:36 -04:00
go2null
4bb273a802
reorganize flow
2019-11-02 04:32:36 -04:00
go2null
4a47ea034b
delete empty .gitmodules
2019-11-02 04:32:36 -04:00
spacewander
7b9fbc4389
git-standup: add option '-B' to group the commits by branch
2019-11-01 17:32:55 +08:00
罗泽轩
2883b67644
Merge pull request #792 from spacewander/git-summary-cleanup
...
clean up git-summary
2019-11-01 17:16:07 +08:00
spacewander
f788c789f3
git-summary: clean up other shellcheck warnings
2019-10-31 18:30:46 +08:00
spacewander
3e8c3ab0c4
git-summary: fix incorrect active days when commits range is given
...
Previous when commits range is given, we count the active days of whole
history because we didn't pass the argument.
2019-10-31 17:56:41 +08:00
spacewander
ff991ac99e
git-summary: remove useless result function.
...
This function was introduced when merging `bin/git-line-summary` into
`bin/git-summary`.
2019-10-31 17:56:41 +08:00
罗泽轩
a14547e92f
Merge pull request #790 from spacewander/git-summary-merge-email
...
git-summary: add --dedup-by-email to remove duplicate users
2019-10-31 10:01:35 +08:00
spacewander
203f5b48ad
git-summary: add --dedup-by-email to remove duplicate users
2019-10-27 09:04:27 +08:00
hemanth.hm
7bdfb1f55f
Merge pull request #788 from spacewander/doc_git_summary_line
...
git-summary: add missing example of --line option
2019-10-15 13:02:43 -07:00
spacewander
cf3e1e7e7d
git-summary: add missing example of --line option
2019-10-15 10:13:32 +08:00
罗泽轩
fd36fc0ea2
Merge pull request #787 from rvbuelow/patch-1
...
Use GIT_DIR environment variable to to set .git directory
2019-10-02 19:23:08 +08:00
罗泽轩
eb9ddbe8a9
Merge pull request #786 from mbologna/patch-1
...
Docs: add OpenSUSE distribution information
2019-10-02 19:11:00 +08:00
Robin von Bülow
256044c04f
Use GIT_DIR environment variable to to set .git directory
2019-10-02 12:42:14 +02:00
Michele Bologna
0cd55d88bf
Docs: add OpenSUSE distribution information
2019-10-01 20:59:48 +02:00
罗泽轩
bba1f964b8
Merge pull request #784 from spacewander/git-effort-col-len
...
git-effort: adjust column limit according to the paths
2019-09-25 10:30:31 +08:00
spacewander
7015501161
git-effort: adjust column limit according to the paths
...
Fix #780 .
2019-09-24 14:32:54 +08:00
罗泽轩
ff0b1cfb0b
Merge pull request #708 from pabs3/git-paste
...
Add git-paste for sending patches to pastebin
2019-09-10 11:24:30 +08:00
Paul Wise
d90b02ce22
Regenerate docs
...
Changes-by: make man/git-paste.{1,html}
2019-09-10 10:40:22 +08:00
Paul Wise
5b62b4a884
Add git-paste for sending patches to pastebin
2019-09-10 10:39:20 +08:00
罗泽轩
f7d127b360
Merge pull request #778 from pabs3/cleanups
...
Clean up some minor issues detected by check-all-the-things
2019-09-06 14:46:15 +08:00
Paul Wise
1d7d4c2446
Switch from using /tmp to using mktemp
...
mktemp protects against attacks from other users.
mktemp protects against concurrent writers.
mktemp respects the $TMPDIR environment variable.
Suggested-by: check-all-the-things
2019-09-05 12:41:45 +08:00
Paul Wise
a85d5f57bb
Switch http URLs to https where possible
...
Suggested-by: check-all-the-things
2019-09-05 12:41:45 +08:00
Paul Wise
1a414f5512
Fix typos
...
Suggested-by: codespell
Suggested-by: spellintian
2019-09-05 12:41:38 +08:00
Paul Wise
e24c1302f4
Fix an indefinite article in the documentation
...
Suggested-by: anorack
2019-09-04 19:35:43 +08:00
罗泽轩
883199093c
Merge pull request #776 from spacewander/update_git_pr_doc
...
git-pr: mention the limitation of -m option
2019-09-02 11:20:22 +08:00
罗泽轩
6a3d61ff12
Merge pull request #777 from fengkx/zplugin-install-completion
...
[Doc]Install completion with zplugin
2019-09-02 11:18:55 +08:00
fengkx
c4e94a4130
docs(Installation): 📝 add src in zplugin ice modifier to source the completion file
2019-09-01 12:06:13 +08:00
spacewander
a921e88d76
git-pr: mention the limitation of -m option
2019-08-30 09:23:08 +08:00
罗泽轩
a56e14488e
Merge pull request #772 from jacobherrington/add-git-coauthor
...
Add git coauthor command
2019-08-28 18:06:24 +08:00
jacobherrington
55cefa9021
Add conditional logic for linebreaks
2019-08-27 10:52:44 -05:00
jacobherrington
3484df9ca4
Ensure arguments exist
2019-08-23 20:30:18 -05:00
jacobherrington
66288296b2
Add git coauthor command
...
This adds a feature to add additional authors to the previous commit,
this feature is supported by GitHub and GitLab and based on the format
should be self-evident to anyone reading the commit message.
2019-08-23 20:21:43 -05:00
spacewander
5bffcb4c89
improve the quality of the integrity check.
2019-08-18 11:46:00 +08:00
罗泽轩
4867571df0
Merge pull request #774 from jacobherrington/patch-2
...
Link to the contributing document
2019-08-18 11:08:18 +08:00
spacewander
a2250dd205
Bump version to 5.1.0-dev.
2019-08-18 10:49:54 +08:00
Jacob Herrington
f053fc48db
Link to the contributing document
2019-08-17 18:43:55 -05:00
spacewander
ebdebadd3b
Version 5.0.0
2019-08-16 22:33:27 +08:00
罗泽轩
fa5017a4a5
Merge pull request #769 from spacewander/no_line_summary
...
git-line-summary: should be the history
2019-07-27 12:20:50 +08:00
spacewander
d4de567ca7
git-line-summary: should be the history
...
Also remove some trailing lines after the output.
2019-07-23 22:13:29 +08:00
罗泽轩
f2587339cf
Merge pull request #768 from bric3/fix-more-character-encoding-issues
...
git-guilt: protect against encoding issues with LC_ALL=C
2019-07-19 09:28:23 +08:00
Brice Dutheil
2dc5d5104e
git-guilt: protect against encoding issues with LC_ALL=C
2019-07-18 15:37:47 +02:00
罗泽轩
500ea2b119
Merge pull request #767 from spacewander/rename_branch_order
...
git-rename-branch: change branch argument order
2019-07-06 13:08:15 +08:00
spacewander
df06f3e3bd
git-rename-branch: change branch argument order
...
Now git-rename-branch has the same order like 'git branch -m', 'git
rename-tag' and other rename command.
Note that this is a break change.
Close #759 .
2019-07-06 11:41:47 +08:00
罗泽轩
defa89c794
Merge pull request #765 from spacewander/column_dependency
...
Installation.md: add dependencies section.
2019-06-30 11:46:51 +08:00
spacewander
58d13f88d4
Makefile: check dependencies before installation.
...
So that the packager will know what are dependencied when they are
making a new package.
2019-06-27 15:12:30 +08:00
spacewander
85248595e3
Installation.md: add dependencies section.
2019-06-27 12:33:18 +08:00
spacewander
0b49719ae4
man/Readme.md: we don't need to update git-extras docs separately
2019-06-24 10:26:14 +08:00
罗泽轩
3080b81bcc
Merge pull request #763 from spacewander/strict_check_integrity
...
check_integrity.sh: check more strickly.
2019-06-24 09:50:54 +08:00
spacewander
c03e0ad841
check_integrity.sh: check more strickly.
2019-06-22 11:16:09 +08:00
罗泽轩
ac9e35735b
Merge pull request #762 from spacewander/pr_merge
...
git-pr: add -m|--merge option to check out a merge commit
2019-06-22 10:54:34 +08:00
罗泽轩
a26f1e6f8e
Merge pull request #761 from btmurrell/preference-for-create-branch
...
`create-branch` allows for preference for `remote` option
2019-06-22 10:54:11 +08:00
Brian Murrell
7d3ab83ec3
implements remote pref for create-branch
2019-06-21 06:20:16 -07:00
spacewander
eae05bbb98
git-pr: add -m|--merge option to check out a merge commit
...
Close #757 .
2019-06-17 11:15:12 +08:00
brian murrell
820b7cd41b
impl for checking remote pref
2019-06-14 01:35:52 -07:00
hemanth.hm
1712db2146
Merge pull request #754 from spacewander/prompt_passwd_before_2fa
...
git-fork: prompt for password before 2FA code.
2019-06-03 11:06:59 +05:30
spacewander
c3c0bdfbbb
git-fork: prompt for password before 2FA code.
...
Fix #750 .
2019-06-02 12:20:09 +08:00
spacewander
4b09e94853
check_integrity.sh: improve readability.
2019-05-25 11:06:03 +08:00
罗泽轩
26447e5bbe
Merge pull request #753 from tiemonl/GH-752_update_reauthor_documentation
...
git-reauthor: updated documentation to show rename workaround
2019-05-23 09:45:31 +08:00
tiemonl
f4f7c1e3b5
GH-752 updated documentation to show rename workaround
2019-05-22 11:22:58 -04:00
罗泽轩
6d1982d6cf
Merge pull request #751 from timfeirg/master
...
git-rename-remote: rename a remote regardless of any existing remotes
2019-05-08 15:14:15 +08:00
timfeirg
ecdd665f1c
git-mv-remote: rename a remote regardless of any existing remotes
2019-05-08 14:08:20 +08:00
Abdullah
a214c93ad4
Installation instructions added for CRUX ( #746 )
...
Added support for CRUX
2019-03-05 12:17:49 +08:00
罗泽轩
044b06b6cb
Merge pull request #723 from bittner/feature/git-undo-soft-leave-changes-staged
...
Make `git undo -s` restore the staging area
2019-03-04 19:31:16 +08:00
罗泽轩
5b0a9d22b6
Merge pull request #744 from spacewander/git-guilt-identation
...
git-guilt: avoid exceeding 80 columns.
2019-02-19 08:47:19 +07:00
spacewander
eecfb9af47
git-guilt: avoid exceeding 80 columns.
2019-02-18 13:11:26 +08:00
spacewander
39df4dfa64
Bump version to 4.8.0-dev.
2019-02-09 17:36:46 +08:00
spacewander
f355fb4c94
Version 4.7.0
2019-02-09 17:08:42 +08:00
spacewander
7a89f7c6e4
git-pr: emphasized that the remote is required when pulling multiple PRs.
2019-02-09 16:58:31 +08:00
罗泽轩
99238bdf0a
Merge pull request #743 from spacewander/allow_multiple_pr
...
git-pr supports pulling multiple pr at once
2019-02-08 19:57:39 +07:00
spacewander
f29dad042c
git-pr: accpeted multiple GitHub URL or ID with remote.
2019-02-02 12:29:41 +08:00
spacewander
87b7c959b4
git-pr: added <[remote]:pr number> option.
2019-02-02 11:45:27 +08:00
罗泽轩
088ea058d9
Merge pull request #740 from spacewander/tweak_man_readme
...
doc: clarify the current working directory when building the docs.
2019-01-21 10:40:07 +08:00
spacewander
c4db208ca4
doc: clarify the current working directory when building the docs.
2019-01-18 17:56:18 +08:00
罗泽轩
44dc1b9dba
Merge pull request #739 from sleagon/master
...
feat: Add -s(--soft) for git sync
2019-01-16 12:19:03 +08:00
单元源
9f806bb828
feat: Add -s(--soft) for git sync
...
feat: Add readme for man page and helper
fix: Remove git-sync.1.html
2019-01-16 11:38:35 +08:00
罗泽轩
49fab7267b
Merge pull request #738 from StuartFeldt/add-symlinks-to-bulk-command
...
Adding support for symlinked dirs in bulk command
2018-12-11 10:06:01 +08:00
Stu Feldt
3730339067
Adding support for symlink directories in bulk command
2018-12-10 11:07:49 -06:00
hemanth.hm
a815bb0fbd
Merge pull request #737 from smancill/standup-ensure-colors
...
git-standup: ensure color usage
2018-11-21 10:12:37 +05:30
Sebastián Mancilla
13fa83b24e
git-standup: ensure color usage
...
Git may fail to detect that the tty supports colors and fallbacks to
non-colored output.
This overrides that by specifying the color parameter.
Based on kamranahmedse/git-standup#84
2018-11-20 14:44:40 -03:00
罗泽轩
eb27b24b73
Merge pull request #736 from spacewander/git_force_clone_not_need_git_repo
...
git-force-clone: should not need git repo
2018-11-06 15:26:54 +08:00
spacewander
5f961fe8e3
misc: sort command list in alphabetical order
2018-11-03 12:36:25 +08:00
spacewander
a5edb6d8b7
git-force-clone: should not need git repo
2018-11-03 10:12:00 +08:00
罗泽轩
7e10554506
Merge pull request #734 from zentarul/master
...
Fix missing double quotes after %DEBUG% in install.cmd
2018-11-02 10:04:09 +08:00
zentarul
700580aae6
Fix missing double quotes after %DEBUG%
2018-11-01 11:11:53 -04:00
spacewander
6e7766f5a4
install.cmd: tweak comments
2018-10-16 21:52:28 +08:00
罗泽轩
3b7637ce40
Merge pull request #732 from sachin-gupta/sg-mods
...
Fix: Dev: `/E` option required to install on Win 10 {b17134} or higher
2018-10-16 21:45:26 +08:00
Sachin Gupta
edebba89b9
Fix: Dev: /E option required with MORE for working on higher version of Windows 10 (**_Build 17134_**)
...
Changes:
- Added small text line to debug files being written iff environment variable `%DEBUG%` is `true`
- Added option `/E` to both MORE commands used inside install.cmd for copying files.
2018-10-09 14:07:05 +05:30
罗泽轩
8b992cc9bc
Merge pull request #729 from orestisf1993/patch-1
...
git-rename-branch: Don't fail if remote doesn't exist
2018-09-13 22:29:07 +08:00
Orestis
7393fb41ed
git-rename-branch: Don't fail if remote doesn't exist
...
Allows the command to work correctly with local branches.
Closes #535
2018-09-13 15:15:03 +03:00
Peter Bittner
b7d507567b
Make git undo -s restore the staging area
2018-08-17 16:22:54 +02:00
spacewander
2590998ee0
Bump version to 4.7.0-dev.
2018-08-11 11:33:30 +08:00
spacewander
8545d97b8d
Version 4.6.0
2018-08-11 09:57:41 +08:00
罗泽轩
424ec4d2a5
Merge pull request #727 from spacewander/strip_caret
...
git-changelog: should remove ^0 suffix from the commit description.
2018-08-10 00:00:58 +08:00
罗泽轩
1cb4979ed7
Makefile: change the installed manpage destination in FreeBSD ( #725 )
2018-08-09 10:06:18 +08:00
spacewander
a347e49178
git-changelog: should remove ^0 suffix from the commit description.
2018-08-08 13:34:11 +08:00
罗泽轩
e4aaf9f697
Merge pull request #722 from spacewander/git_changelog_start_commit
...
git-changelog: add --start-commit option, like --start-tag but for commit
2018-06-20 15:41:51 +08:00
spacewander
792b697450
git-changelog: add --start-commit option, like --start-tag but for commit
2018-06-16 12:20:08 +08:00
罗泽轩
4e1cd73e59
Merge pull request #721 from spacewander/git_changelog_list_newline
...
git-changelog: add missing newline to the plain output
2018-06-16 10:04:02 +08:00
spacewander
b7a1a0d8b2
git-changelog: add missing newline to the plain output
...
Previously, running "git changelog -x --start-tag 4.5.0 -p -l" will see
* Bump version to 4.6.0-dev. * Version 4.5.0
Because there is no newline in the end of each plain output.
2018-06-15 18:14:18 +08:00
罗泽轩
d681b972cc
Merge pull request #713 from pabs3/docs
...
Updates to the documentation building workflow and docs
2018-05-30 13:49:18 +08:00
罗泽轩
28819e388e
Merge pull request #717 from flatcap/ignore-private
...
add: git-ignore -p (private to repo)
2018-05-25 19:34:47 +08:00
Richard Russon
f30005acfd
optimisation of mkdir
2018-05-25 11:16:14 +01:00
Richard Russon
691d640b2d
Ensure info dir exists
2018-05-25 10:12:27 +01:00
Richard Russon
0f76863d9b
add: git-ignore -p (private to repo)
2018-05-23 23:59:21 +01:00
罗泽轩
a4f85ae6ff
Merge pull request #716 from francoism90/patch-1
...
Add installation guide for Arch Linux
2018-05-21 11:35:20 +08:00
François M
787ee2c997
Added Arch Linux
...
Link to packages, since Arch Linux may use an AUR helper.
2018-05-20 14:31:47 +02:00
罗泽轩
d34b6ae0bc
Merge pull request #714 from spacewander/fix_detect_sed_i_support
...
git-sed: fix previous bsd sed workaround
2018-05-16 14:38:10 +08:00
Paul Wise
f5c26c7fb3
Documentation rebuild: git-sed.* flags argument
...
Reflects changes in commit ee14220f66
2018-05-09 17:16:52 +08:00
Paul Wise
731e9d8db9
Documentation rebuild: git-clear.html whitespace removal
...
Reflects changes in commit a6732ef6db
2018-05-09 17:16:52 +08:00
Paul Wise
8b58e570cb
Documentation rebuild: git-extras.* updates
...
Re-orders git-clear/git-clear-soft and git-lock/git-locked due to
differences between the sorting by make and shell.
2018-05-09 17:16:52 +08:00
Paul Wise
ba6d991851
Documentation rebuild: index.txt updates
...
Removes most index.txt whitespace because whitespace is insignificant in
ronn index.txt files and POSIX shell makes it hard to use the right amount.
Re-orders git-clear/git-clear-soft and git-lock/git-locked due to
differences between the sorting by make and shell.
2018-05-09 17:16:52 +08:00
Paul Wise
bd6a1fcafe
Documentation rebuild: dates and headers
...
Adds "Git Extras" to all the headers.
Updates all the dates to the last modification.
2018-05-09 17:16:52 +08:00
Paul Wise
317e546b0a
Remove one of the documentation building tools
...
The two methods build slightly different manual pages.
The Makefile based version has better headers so use it.
Automatically generate git-extras.md and index.txt when building docs.
2018-05-09 17:16:49 +08:00
Paul Wise
a6732ef6db
Remove some trailing whitespace
2018-05-09 10:20:46 +08:00
罗泽轩
3802e83e79
Merge pull request #715 from tjaartvdwalt/master
...
Fix bugs with git-release --semver
2018-05-08 10:27:42 +08:00
Tjaart van der Walt
658f133691
Major/Minor release should reset minor/patch versions to 0
...
There is a bug in the current version:
```
version=1.1.3
./git-release --semver minor
version=1.2.3
```
The correct behavior should be:
```
version=1.1.3
./git-release --semver minor
version=1.2.0
```
2018-05-07 15:00:39 -07:00
Tjaart van der Walt
6f416b20c3
Fix greedy match of version number
...
The original regex will greedily match the first digit of version
numbers that have multiple digits.
2018-05-07 14:44:35 -07:00
spacewander
f7514bebbf
git-sed: fix previous bsd sed workaround
2018-05-07 15:18:28 +08:00
罗泽轩
d024755718
Merge pull request #712 from spacewander/detect_sed_i_support
...
git-sed: detect sed -i support and work around for the BSD sed
2018-05-05 11:22:00 +08:00
spacewander
0ab9b47371
git-sed: detect sed -i support and work around for the BSD sed
2018-05-05 10:57:57 +08:00
罗泽轩
4325238aee
Merge pull request #709 from pabs3/git-sed
...
Improve the git-sed command
2018-05-03 17:30:06 +08:00
Paul Wise
9785199036
git-sed: discover a separator when the / character is used in arguments
...
Prevents sed from returning an error for arguments containing filenames:
$ git sed src/foo.c src/bar.c
sed: -e expression #1 , char 13: unknown option to `s'
2018-04-26 11:07:07 +08:00
Paul Wise
c27a3505dc
git-sed: pass the -r option to the xargs command
...
Prevents running sed when the search pattern does not match any files.
This results in sed printing an unnessecary warning:
$ git sed foo bar
sed: no input files
2018-04-26 11:06:34 +08:00
Paul Wise
ee14220f66
git-sed: Allow the flags to be passed as a third argument
...
This is more in-line with how sed itself works.
2018-04-20 11:29:54 +08:00
罗泽轩
1b94ca130c
Merge pull request #706 from MontakOleg/delete-branch
...
Fix deleting branches without upstream
2018-03-25 14:16:53 +08:00
Montak Oleg
fd2151f9bb
Fix deleting branches without upstream
2018-03-25 00:10:59 +03:00
罗泽轩
6add6488d7
Merge pull request #704 from ramlev/master
...
Remove double path delimiters in zsh description
2018-03-22 17:06:41 +08:00
Hasse Ramlev Hansen
22a44eb206
Remove double path delimiters in zsh description
2018-03-22 06:56:36 +01:00
罗泽轩
420c678526
Merge pull request #703 from psprint/master
...
Installation.md: Zsh-plugin method which doesn't require root access
2018-03-02 16:05:55 +08:00
Sebastian Gniazdowski
c53edf00da
Installation.md: Zsh-plugin method which doesn't require root access
2018-03-01 16:39:59 +01:00
spacewander
ebf7903d0e
Bump version to 4.6.0-dev.
2018-02-18 18:58:16 +08:00
spacewander
4ab42e218e
Version 4.5.0
2018-02-18 11:56:35 +08:00
spacewander
e9ddc1dc3b
git-release: show message if nothing given after --semver
2018-02-18 11:37:23 +08:00
spacewander
f5d99bcac9
doc: update git-extras index
2018-02-15 22:57:56 +08:00
罗泽轩
9ee318e8d4
Merge pull request #639 from spacewander/avoid_deleting_local_upstream
...
git-delete-branch: avoid deleting local upstream
2018-02-15 12:23:29 +08:00
罗泽轩
5dbab48aff
Merge pull request #693 from xakraz/fix-mktemp-pattern
...
Fixed mktemp template to support busybox (and Alpine linux)
2018-02-11 20:26:23 +08:00
spacewander
de364cfac1
git-release: add --no-empty-commit for empty commit hater
2018-02-11 20:12:10 +08:00
spacewander
8714ac4aa1
git-release: create an empty release commit if there is nothing to commit
2018-02-11 20:12:10 +08:00
罗泽轩
d4bf79df8f
git-summary: unescape tab for linux column utility
...
git-summary: unescape tab for linux column utility
Linux column utility will escape tab if a separator is specified.
This problem is first reported in Fedora 27.
2018-02-08 22:34:43 +08:00
spacewander
16591d3788
git-undo: add confirmation when -h is specified
2018-02-07 10:37:55 +08:00
Xavier Krantz
80e93704eb
Fixed mktemp template to support busybox (and Alpine linux)
2018-02-05 12:33:18 +01:00
罗泽轩
8216e6bbbc
Merge pull request #691 from koppor/patch-1
...
Remove trailing dot of German Windows
2018-02-05 11:25:53 +08:00
Oliver Kopp
f959b4d4d3
Remove trailing dot of German Windows
2018-02-04 13:04:25 +01:00
罗泽轩
db2d0456ac
Merge pull request #690 from dominicbarnes/release-push-tags-first
...
feat(git-release): push tags first to help ci tools not miss them
2018-01-25 10:32:50 +08:00
Dominic Barnes
5639160b8b
feat(git-release): push tags first to help ci tools not miss them
...
If you are buliding on CircleCI for example, pushing the commits first
can lead to a race where CI env will not see the tags since the pull
happened before the tags were finished pushing.
It should be fully safe (and backwards-compatible) to change the order
of pushing to the remote.
2018-01-23 13:51:44 -08:00
罗泽轩
c2efbc889d
Merge pull request #687 from spacewander/add_semver
...
git-release: handle extra non-numeric prefix in tag with --semver
2017-12-14 18:40:41 +08:00
spacewander
ab99fb3eb2
git-release: handle extra non-numeric prefix in tag with --semver
2017-12-12 10:10:37 +08:00
hemanth.hm
17fce79d3c
Merge pull request #686 from spacewander/add_semver
...
git-release: add --semver option
2017-12-10 12:34:05 +05:30
spacewander
693c84f8f0
git-release: add --semver option
2017-12-10 14:06:00 +08:00
hemanth.hm
b7d960eadb
Merge pull request #684 from spacewander/ignore_unknown_arg
...
git-release: function usage doesn't exist, ignore unknown argument instead
2017-12-08 10:41:31 +05:30
spacewander
199364e932
git-release: function usage doesn't exist, ignore unknown argument instead
2017-12-07 00:29:07 +08:00
hemanth.hm
3b21b87036
Merge pull request #681 from EdwardBetts/master
...
Fix so 'git rebase-patch' is described once.
2017-11-26 12:57:30 +05:30
Edward Betts
fc8eaf0d28
Fix so 'git rebase-patch' is described once.
2017-11-26 06:31:22 +00:00
罗泽轩
6aecc2b9fa
Merge pull request #680 from lhernanz/master
...
Preserve existing user commands in zsh completion
2017-11-15 15:12:08 +08:00
Luis Miguel Hernanz
43bc038d41
Preserve the existing user_commands in the git completion system
2017-11-14 22:57:50 -08:00
罗泽轩
82896c8553
Merge pull request #679 from spacewander/update_git_changelog_doc
...
Mention how to control changelog format in docs of git-changelog
2017-11-13 14:18:37 +08:00
罗泽轩
f1aeed4344
Merge pull request #678 from timhwang21/devs/thwang/docs-update
...
Docs> Add -- in front of cmd for git log
2017-11-10 19:58:36 +08:00
spacewander
46bc0959e1
Mention how to control changelog format in docs of git-changelog
2017-11-10 11:20:08 +08:00
Timothy Hwang
167f0c8b50
Docs> Add -- in front of cmd for git log
...
The current docs are incorrect, using the command gives an error msg:
```
error: unknown argument --since=1 week ago
error: if that argument was meant for git-log,
error: please put it after two dashes ( -- ).
```
2017-11-09 13:54:54 -05:00
罗泽轩
e7ca960f0c
Merge pull request #676 from gormac/master
...
Fix 'Invalid code page' error when restoring code page at end of script for Windows
2017-11-03 16:38:09 +08:00
Marco Glasbergen
d520e0641e
Fix 'Invalid code page' error when resetting code page at end of script
2017-11-03 09:00:51 +01:00
罗泽轩
9573a7653b
Merge pull request #675 from quite/effort-cursor
...
git-effort: restore normal (visible) cursor properly
2017-10-27 20:18:47 +08:00
Daniel Lublin
af39b2b2ee
git-effort: restore normal (visible) cursor properly
...
If I understand GNU* correctly, cnorm should be used to undo `civis` (make
invisible). `cvvis` is just another abnormal mode, namely "very visible".
*) https://www.gnu.org/software/termutils/manual/termutils-2.0/html_chapter/tput_1.html
2017-10-27 10:30:17 +02:00
hemanth.hm
78835c7525
Merge pull request #674 from tj/pull-request-two-factor-auth
...
Add GitHub two factor auth support to git-pull-request
2017-10-22 06:02:55 +05:30
spacewander
a88958ba20
Add GitHub two-factor auth support to git-pull-request
2017-10-18 10:47:17 +08:00
hemanth.hm
5b7c076fba
Merge pull request #672 from mehandes/patch-1
...
Added Nix/NixOS method of installation
2017-10-15 15:41:52 +05:30
Matt
942bab3b32
Added Nix/NixOS method of installation
2017-10-15 11:23:25 +02:00
罗泽轩
7b76644bc6
Merge pull request #671 from sambostock/improve-ignore-io
...
Improve ignore-io
2017-10-15 10:37:39 +08:00
Sam Bostock
6b5f5d8762
Use local variables & format strings
2017-10-14 13:31:31 -04:00
Sam Bostock
18d8221dd2
Fix omission when alphabetically printing ignores
...
Iterating through `a..z` omits entries starting with other characters.
2017-10-09 23:18:18 -04:00
Sam Bostock
cfcb4d92c6
Remove arbitrary column limit on ignore-io
2017-10-09 23:08:12 -04:00
罗泽轩
1f0a044677
Merge pull request #670 from zeeshanu/patch-1
...
Fix typo in Commands.md
2017-08-09 20:51:19 +08:00
Zeeshan Ahmed
9f621306cb
Fix typo
2017-08-09 11:23:19 +05:00
hemanth.hm
c59ddb73b4
Merge pull request #668 from isaacm/patch-1
...
Fix typos
2017-07-19 22:30:22 +05:30
Isaac Mungai
669c9180b4
Fix typos, remove trailing whitespace
2017-07-19 10:18:01 -04:00
spacewander
12cd938db3
install: submit brew patch to upstream
...
Follow the atempt of pull request #491
2017-07-16 16:50:55 +08:00
spacewander
4defd6d676
Bump version to 4.5.0-dev.
2017-07-16 12:37:58 +08:00
spacewander
be8a1548d4
Version 4.4.0
2017-07-15 16:25:54 +08:00
spacewander
15759061f5
install: display absolute path of zsh completion script
2017-07-15 14:37:24 +08:00
spacewander
423c49ab92
zsh: update completion of git bug|chore|feature|refactor|create-branch
2017-07-15 11:41:17 +08:00
spacewander
227ef26e7f
git summary: use more common way to cd to top level directory
2017-07-15 09:57:57 +08:00
罗泽轩
9e2a625b29
Merge pull request #664 from mapitman/master
...
Specify upstream for git bug/chore/feature/refactor and git create-branch won't set origin as upstream by default
2017-07-13 12:25:18 +08:00
Mark Pitman
d990270de7
Update man page for create-branch
...
Add notes section to talk about change in default behavior.
2017-07-12 20:07:25 -07:00
Mark Pitman
4dc76ef81b
Update man pages
2017-07-12 00:59:56 -07:00
Mark Pitman
ab6c51bb8f
Update docs for new behavior
...
`git create branch`
`git feature|bug|chore|refactor`
2017-07-12 00:14:24 -07:00
Mark Pitman
c064956f85
Use "$@" instead of $@
2017-07-11 23:37:16 -07:00
Mark Pitman
a75411b029
Consolidate feature/bug/chore/refactor logic
...
Remove unneccesary code
2017-07-11 21:42:02 -07:00
Mark Pitman
93150aa411
Allow -r parameter to be in any order in command line
2017-07-11 21:41:06 -07:00
Mark Pitman
61b2a2c703
Add ability to specify a remote
...
Use -r to push the new branch to origin
Use -r <remote_name> to push to <remote_name>
Will not auto push to origin if you do not use the argument
2017-07-09 01:57:46 -07:00
Mark Pitman
be15db9cdf
Fix Issue #186
...
Use `git create-branch` instead of `git checkout -b` in:
git-bug
git-chore
git-feature
git-refactor
Since `git-finish` uses `git-delete-branch` (which expects the branch to
have been pushed to origin) we should use `git-create-branch` to create
it.
2017-07-07 23:19:02 -07:00
spacewander
6bd1ebd68b
fix a wrong name in installation message
2017-07-06 16:06:29 +08:00
罗泽轩
9a6c60e6a7
Merge pull request #662 from nschlimm/master
...
Added git-bulk to not_need_git_repo
2017-06-20 19:07:08 +08:00
Niklas Schlimm
acb3f93ae4
Added git-bulk to not_need_git_repo
2017-06-20 12:11:48 +02:00
spacewander
4d885acda0
fix various typos
2017-06-18 20:22:11 +08:00
罗泽轩
ce6d635c33
Merge pull request #659 from bersace/mr
...
Add git-mr to checkout GitLab merge requests
2017-06-16 17:46:02 +08:00
Étienne BERSAC
d4c7581835
Add git-mr to checkout GitLab merge requests
2017-06-16 11:11:50 +02:00
罗泽轩
4b29351f2f
Merge pull request #656 from dueringa/patch-1
...
Fix typo in git-extras
2017-05-16 22:27:58 +08:00
Andreas Duering
9baae93a9b
Fix typo in git-extras
...
Output said "Setting up 'git-exras" instead of "Setting up 'git-extras"
2017-05-16 15:12:45 +02:00
hemanth.hm
9334c9db31
Merge pull request #654 from spacewander/replace-xargs-r
...
git-delete-merged-branches: replace xargs -r option
2017-05-09 14:49:55 +05:30
spacewander
0e7cba55a8
git-delete-merged-branches: replace xargs -r option
2017-05-09 10:48:45 +08:00
spacewander
276a307780
Bump version to 4.4.0-dev.
2017-05-06 14:45:15 +08:00
spacewander
88ee400c3f
Version 4.3.0
2017-05-05 16:50:41 +08:00
spacewander
f55690e702
git-authors: remove trailing spaces
2017-05-05 16:02:09 +08:00
罗泽轩
204406bd29
Merge pull request #649 from adriaanzon/patch-1
...
git-fork: Let curl exit with error code on fail
2017-05-05 16:00:39 +08:00
罗泽轩
0bae07f7b9
Merge pull request #651 from spacewander/pass-arguments-to-hooks
...
pass tag and optional arguments to hook and stop if pre-release hook fails
2017-05-03 22:33:51 +08:00
spacewander
27310926d3
git-release: add pre-release failure message
2017-05-03 09:54:17 +08:00
spacewander
3428b278d3
git release: stop if pre-release hook fails
2017-05-02 14:59:18 +08:00
spacewander
d01ad47953
git-release: update docs
2017-05-02 14:53:36 +08:00
Daniel Bruder
b41a4cf05b
pass release arguments to pre/post-release scripts
...
With some modification to catch up with latest situation.
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2017-05-02 14:35:03 +08:00
Adriaan Zonnenberg
bd8545f748
git-fork: Let curl exit with error code on fail
2017-04-27 18:44:20 +02:00
罗泽轩
4917796d63
Merge pull request #647 from SMillerDev/patch-1
...
Add BSD cat support
2017-04-24 10:04:11 +08:00
Sean Molenaar
14159245a9
Add BSD cat support
...
on macOS cat doesn't support the long operator
2017-04-21 15:37:48 +02:00
hemanth.hm
5cdfe42113
Merge pull request #646 from spacewander/upgrade-git-standup
...
Upgrade git-standup to new interface
2017-04-13 22:17:35 +05:30
spacewander
383f95f7c8
git-standup: update zsh completion
2017-04-13 00:16:55 +08:00
spacewander
0a125edeaf
git-standup: also update the docs
2017-04-13 00:16:37 +08:00
spacewander
684d6acc93
git-standup: add sanity check to -d option and overwrite -w option
2017-04-12 23:39:58 +08:00
spacewander
0b91cd9bae
git-standup: upgrade interface to catch up with kamranahmedse/git-standup
2017-04-12 14:17:25 +08:00
罗泽轩
61211634c9
Merge pull request #642 from nschlimm/git-bulk-command
...
Git bulk command
2017-04-01 10:40:08 +08:00
Niklas Schlimm
759b3841b8
Typos again
2017-03-31 18:20:12 +02:00
Niklas Schlimm
fe39ac8af2
Corrected repository location print out and docs ws-root-directory absolute path
2017-03-30 19:31:32 +02:00
Niklas Schlimm
ca62bdcfe6
Codereview Spacewander - whitespaces in workspace locations
2017-03-29 17:34:39 +02:00
罗泽轩
fda5f3e4ef
Merge pull request #643 from jonyamo/git-pr_clean-git-config
...
Remove slashes from git-config command
2017-03-29 12:16:11 +08:00
Niklas Schlimm
7263b6c611
Review from spacewander
2017-03-28 21:52:21 +02:00
J.C. Yamokoski
6eb04bcca8
Remove slashes from git-config command
...
These slashes were causing the branch to be saved in `.git/config` with headings
such as `[branch "\"pr/123\""]` as opposed to `[branch "pr/123"]`. This in turn
prevented these entries from being removed when running `git pr clean`.
2017-03-28 09:44:40 -04:00
Niklas Schlimm
de15bf7fb0
Merge branch 'master' into git-bulk-command
2017-03-19 19:49:08 +01:00
罗泽轩
49771ba018
Merge pull request #636 from spacewander/fix_rename_branch
...
use remote detected instead of 'origin' in rename-branch
2017-03-19 20:52:48 +08:00
hemanth.hm
6e9da2a4e7
Merge pull request #641 from tj/fix_pull_request_upstream
...
pull_request: should use detected upstream instead of hardcore origin
2017-03-19 12:57:32 +05:30
spacewander
4a05ad29e4
git-rename-branch: use detected upstream remote
2017-03-19 02:00:11 +08:00
spacewander
344b145062
git-pull-request: use detected upstream remote
2017-03-19 01:31:44 +08:00
spacewander
9744830d4a
git-delete-branch: avoid deleting local upstream
2017-03-18 22:13:57 +08:00
Niklas Schlimm
02dc8b5b21
Better behaviour in non workspace directories
2017-03-17 17:33:53 +01:00
Niklas Schlimm
d3cccebbd2
Current workspace is default target of bulk operations
2017-03-17 17:13:15 +01:00
Niklas Schlimm
9260fd92bf
Even shorter
2017-03-13 21:06:50 +01:00
Niklas Schlimm
5957544dee
Code refactor
2017-03-12 16:15:09 +01:00
Niklas Schlimm
9263aec739
bug fix in single ws mode
2017-03-08 20:26:44 +01:00
Niklas Schlimm
1cc77481bd
code formatting
2017-03-08 20:11:26 +01:00
Niklas Schlimm
534c72b91f
Fix in git-bulk head
2017-03-08 19:58:34 +01:00
Niklas Schlimm
57c0eb776c
New Command git-bulk initial commit
2017-03-08 19:50:36 +01:00
hemanth.hm
b00aacee00
Merge pull request #635 from spacewander/fix_rename_branch
...
fix syntax & name variables better in rename-branch
2017-03-07 14:18:02 +05:30
spacewander
cc0dff2f49
fix syntax & name variables better in rename-branch
2017-03-07 14:39:50 +08:00
罗泽轩
b0ba3e5346
Merge pull request #633 from nschlimm/columnsflex
...
Columns in git-effort adopt to file length
2017-03-06 11:51:26 +08:00
Niklas Schlimm
422c9a8e69
taken out duplicate columns setting
2017-03-05 16:06:47 +01:00
Niklas Schlimm
b01359efc5
Optimized file length calculation
2017-03-04 14:21:26 +01:00
Niklas Schlimm
518db6e648
Columns in git-effort adopt to file length
2017-03-04 13:59:48 +01:00
hemanth.hm
2289c25029
Merge pull request #630 from jjlin/rhel/centos
...
Add RHEL/CentOS installation
2017-02-18 13:14:40 +05:30
Jeremy Lin
719dd2c3af
Add RHEL/CentOS installation
2017-02-17 11:15:24 -08:00
hemanth.hm
28363eff4e
Merge pull request #629 from dankilman/fix-git-effort
...
Fix git-effort for paths starting with dash
2017-02-15 09:07:22 +05:30
Dan Kilman
b2c7de9a5a
Fix git-effort for paths starting with dash
2017-02-14 23:57:19 +02:00
罗泽轩
9c1feecca5
Merge pull request #626 from jldugger/jldugger/email-fallback
...
fall back to EMAIL when user.email is not configured
2017-02-03 10:38:28 +08:00
Justin Dugger
c80b4e773f
fall back to EMAIL when user.email is not configured
2017-02-01 20:36:34 -08:00
Nicolai Skogheim
e93f206bad
Merge pull request #619 from spacewander/git-summary-separator
...
use U+266A instead of comma as separator
2017-01-31 11:32:56 +01:00
hemanth.hm
484b98bb04
Merge pull request #624 from spacewander/has_git_commit
...
Check commit existed before running some commands
2017-01-27 16:53:47 +05:30
spacewander
64b4a599e8
Check commit existed before running some commands
2017-01-27 18:58:16 +08:00
罗泽轩
c258e5d4e8
Merge pull request #615 from techjacker/master
...
Adds 2FA support to git-fork
2017-01-27 10:45:10 +08:00
Andrew Griffiths
2451c0c202
Adds SSH prompt to git fork
2017-01-25 10:32:49 +00:00
spacewander
bb5f4b0234
use U+266A instead of comma as separator
2017-01-24 14:13:38 +08:00
罗泽轩
2e8b368141
Merge pull request #610 from nicolaiskogheim/fix-spelling
...
spelling: {a,an} archive
2016-12-26 19:57:49 -06:00
Nicolai Skogheim
e31f61ba34
spelling: {a,an} archive. Fix #609
2016-12-26 19:22:55 +01:00
hemanth.hm
df06f9af2e
Merge pull request #606 from spacewander/fix-git-extras-update
...
fix git-extras update and tweak Windows detection
2016-12-07 09:45:30 +05:30
spacewander
b8ea5c4a02
fix git-extras update and tweak Windows detection
...
Replace expr with bash substring expansion.
Tested under:
GNU bash, version 4.3.42(5)-release (x86_64-pc-msys)
GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin16)
2016-12-07 10:39:53 +08:00
罗泽轩
82162ea8c8
Merge pull request #585 from tardypad/stamp
...
Add git stamp
2016-12-05 20:13:50 +08:00
罗泽轩
15ae263312
Merge pull request #578 from tardypad/count_fix_extra_arguments
...
count: remove usage of extra arguments for detailed display
2016-12-05 09:49:03 +08:00
Damien Tardy-Panis
c5bd28dd51
stamp: show real looking results in Commands.md doc
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
a7779a1029
stamp: add warning in documentation about corner case
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
9ea8f98e5c
stamp: add zsh autocompletion
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
a118f306b1
stamp: remove non used multiple lines error messages
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
4aec48c85c
stamp: the message consists in all terms after the identifier
...
no need to put quotes in case of spaces
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
c9463bf6ef
stamp: identifier is case insensitive for the replacement
2016-12-04 16:21:09 +01:00
Damien Tardy-Panis
705bb32a7a
stamp: add to Commands doc
2016-12-04 16:21:05 +01:00
Damien Tardy-Panis
3b621f1052
stamp: add manual
2016-12-04 16:18:54 +01:00
Damien Tardy-Panis
13f15d5339
stamp: add bash autocompletion
2016-12-04 16:18:54 +01:00
Damien Tardy-Panis
b105dd837a
stamp: add replace option
...
replace all previous stamps with same identifier in commit message
2016-12-04 16:18:54 +01:00
Damien Tardy-Panis
3ffbe23fbe
stamp: display new full message as result
2016-12-04 16:18:54 +01:00
Damien Tardy-Panis
79629e6b6e
stamp: add extra optional message parameter
2016-12-04 16:18:54 +01:00
Damien Tardy-Panis
cd328bfb61
stamp: add basic script
2016-12-04 16:18:54 +01:00
罗泽轩
76694bccdd
Merge pull request #601 from richardfearn/git-sed-spaces-in-filenames
...
git-sed: use "grep -z" and "xargs -0" to cope with spaces in filenames
2016-11-20 10:38:46 +08:00
hemanth.hm
29a5596d9e
Merge pull request #603 from richardfearn/git-clear-consistent-defaults
...
git-clear-soft: change default yes/no option to "no" (as with git-clear)
2016-11-20 05:16:22 +05:30
hemanth.hm
20a9e95b9a
Merge pull request #602 from richardfearn/git-delete-merged-branches-fix
...
git-delete-merged-branches: use "xargs -r" to prevent error when there are no branches to delete
2016-11-20 05:15:58 +05:30
Richard Fearn
c4a9bb46d9
git-clear-soft: change default yes/no option to "no" (as with git-clear)
...
6d49449 changed the git-clear default option to "no" (see #583 ).
Make the git-clear-soft default the same - it's safer.
2016-11-19 17:53:51 +00:00
Richard Fearn
8cbbf9095a
git-delete-merged-branches: use "xargs -r" to prevent error when there are no branches to delete
...
Prevents this error:
$ git delete-merged-branches
fatal: branch name required
2016-11-19 17:41:30 +00:00
Richard Fearn
2292e1cebe
git-sed: use "git grep -z" and "xargs -0" to cope with spaces in filenames
...
Otherwise filenames with spaces result in errors:
$ cat "file with spaces in name"
old
$ git sed old new
sed: can't read file: No such file or directory
sed: can't read with: No such file or directory
sed: can't read spaces: No such file or directory
sed: can't read in: No such file or directory
sed: can't read name: No such file or directory
2016-11-19 17:26:17 +00:00
罗泽轩
fd2de52949
Merge pull request #600 from richardfearn/git-fresh-branch-fix
...
git-fresh-branch: fix handling of 'yes' response when there are changes
2016-11-20 01:25:30 +08:00
罗泽轩
7f14cc4488
Merge pull request #599 from richardfearn/improve-yes-no-prompts
...
git-{clear,clear-soft,sync}: improve yes/no prompts
2016-11-20 01:17:18 +08:00
Richard Fearn
4f8e411f71
git-fresh-branch: fix handling of 'yes' response when there are changes
...
'break' isn't valid in its current location in the script, resulting in an
error like:
/usr/bin/git-fresh-branch: line 42: break: only meaningful in a `for', `while', or `until' loop
Since there's a call to 'clean' right at the end of the script, do nothing if
anything beginning 'Y' or 'y' is entered; execution will continue to the end
of the script, and 'clean' will be called.
2016-11-19 16:59:58 +00:00
Richard Fearn
82d6a7265f
git-{clear,clear-soft,sync}: improve yes/no prompts
...
Don't print trailing newline; prompt for yes/no response on the same line
2016-11-19 16:41:19 +00:00
hemanth.hm
1ed75978a9
Merge pull request #598 from richardfearn/fix-git-sed-typo
...
git-sed: fix 'unkonwn' typo
2016-11-19 20:52:43 +05:30
罗泽轩
54de081be7
Merge pull request #597 from richardfearn/commands-md-improvements
...
Improvements to Commands.md
2016-11-19 22:20:02 +08:00
Richard Fearn
009f4fb6d1
git-sed: fix 'unkonwn' typo
2016-11-19 14:03:21 +00:00
Richard Fearn
575f5dfd19
Commands.md: add link to 'git summary' in 'git line-summary' documentation
2016-11-19 13:41:21 +00:00
Richard Fearn
2a70117f02
Commands.md: add links to "git bug", etc. to index
...
Replace single "git feature|refactor|bug|chore" link with separate links for
each of the four commands, so they all appear in the right place in the index.
2016-11-19 13:36:48 +00:00
Richard Fearn
c5d29821da
Commands.md: add 'git rscp' link to 'git scp' documentation
...
(git scp documentation also covers git rscp)
2016-11-19 13:33:39 +00:00
Richard Fearn
4d92c8bdbf
Commands.md: put commands in alphabetical order
2016-11-19 13:29:00 +00:00
hemanth.hm
9f48c6a1cc
Merge pull request #596 from richardfearn/archive-file-typo-fix
...
Fix typo in archive-file documentation
2016-11-18 20:29:20 +05:30
Richard Fearn
c3a303ef70
Fix typo in archive-file documentation
2016-11-18 12:26:11 +00:00
罗泽轩
e1f0f6937a
Merge pull request #595 from aaguilera/master
...
fix: git-squash docs. Replaced 'actual' with 'current'
2016-11-18 10:18:38 +08:00
Angel Aguilera
77e55640d7
fix: git-squash docs. Replaced 'actual' with 'current'
2016-11-14 11:17:28 +01:00
hemanth.hm
ec64fe6500
Merge pull request #592 from spacewander/fix_integrity
...
Fix integrity for git-reauthor
2016-11-12 20:45:45 -08:00
spacewander
7aa7bcf740
Add travis ci
2016-11-12 15:03:10 +08:00
hemanth.hm
2d6e4eaf8a
Merge pull request #594 from spacewander/fix_release
...
Show all commit messages if no tag found
2016-11-05 22:55:06 +05:30
spacewander
b89c12e79b
show all commit messages if no tag found
2016-11-05 14:33:16 +08:00
spacewander
e101d825a2
strip out branches like trap-effort-signals
2016-11-05 12:10:03 +08:00
spacewander
dead6873db
Add git-reauthor to completion script
2016-11-01 10:24:12 +08:00
spacewander
c8142ca539
Relax #! format check
2016-11-01 10:22:45 +08:00
罗泽轩
db62a6d95c
Merge pull request #591 from nottrobin/force-clone
...
git-force-clone
2016-10-31 09:52:38 +08:00
Robin Winslow
71a12810e0
Be explicit about only resetting git directories
...
This expects a target git directory. If it's not a git directory,
(e.g. a simple directory) then it will pass through to
`git clone` which will raise an error.
Here I'm clarifying that this tool will reset local *git directories* specifically.
2016-10-29 17:24:18 +01:00
Robin Winslow
5550cfa4dc
Fix branch option parsing
...
Needs an extra `shift`, to remove the second option as well.
2016-10-29 16:23:28 +01:00
Robin Winslow
6e87dc3e55
Fix usage
2016-10-29 16:18:09 +01:00
Robin Winslow
2137124977
Use LC_ALL=C for locale consistency
2016-10-29 16:16:18 +01:00
Robin Winslow
ad5365fb53
Remove unnecessary check
2016-10-29 16:16:04 +01:00
Robin Winslow
e476562a46
git-force-clone
...
All files for git-force-clone, a command for overwriting local repos when closing repositories.
2016-10-28 22:23:47 +01:00
罗泽轩
779f467612
Merge pull request #590 from bbbco/changelog-tmp-file-fix
...
Be sure to remove tempfile in git-changelog
2016-10-22 11:40:46 +08:00
Brian Goad
7ff05f2977
Need to remove the temp file regardless
2016-10-21 14:05:44 -04:00
hemanth.hm
249a6cd27c
Merge pull request #589 from yelinaung/yla/typo-fixes
...
Spelling fixes
2016-10-15 22:11:06 +05:30
Ye Lin Aung
f0a8b9e17e
Spelling fixes for the roon file and html files
2016-10-15 22:46:04 +08:00
Ye Lin Aung
3ae8d22637
Spelling fixes
...
Fixed some spellings under man
2016-10-15 22:22:21 +08:00
hemanth.hm
39b9624381
Merge pull request #588 from spacewander/no-email
...
Add --no-email to git-author
2016-10-12 12:19:00 +05:30
spacewander
1b84048bfc
Add --no-email to git-author
...
This feature is used to generate AUTHORS in 4.2.0 release.
2016-10-12 14:37:45 +08:00
spacewander
805d43831f
Bump version to 4.3.0-dev.
2016-10-08 14:04:14 +08:00
spacewander
91aa82b62b
Version 4.2.0
2016-10-08 13:52:34 +08:00
spacewander
b649730a2c
remove contributors' email addresses to avoid #544
2016-10-08 11:54:38 +08:00
spacewander
f011c7656a
promote two maintainers
2016-10-08 11:53:06 +08:00
罗泽轩
5c11295852
Merge pull request #584 from grindhold/fix-583
...
fixes #583
2016-09-24 11:06:15 +08:00
grindhold
6d49449a4d
fixes #583
...
put default option in security-answer to 'no'
2016-09-23 22:38:27 +02:00
罗泽轩
8e15d4245d
update docs to clarify rename-branch ( #581 )
2016-09-20 20:47:34 +05:30
Damien Tardy-Panis
fae4c29870
count: remove usage of extra arguments for detailed display
...
When viewing detailed count information through the usage of the
--all argument, extra arguments would be also passed to the
git shortlog command (probably to be used as revisions list)
This behaviour was introduced in commit 7a60cd1 .
Unfortunately the --all argument itself is passed along and results
in the counts of all refs to be displayed
This commit removed the usage of extra arguments and thus only
display the counts of the current branch
2016-09-12 13:46:25 +02:00
R. Martinho Fernandes
241069ddac
Make git-pr set up branch for pulling ( #570 )
...
With these changes, the pr/nn branches created by git-pr also support `git pull` to get PR updates.
2016-09-11 09:12:41 +05:30
Hozefa
93c2830ce7
add link to ronn git repo ( #575 )
2016-09-11 09:11:49 +05:30
Hozefa
5a8ce5e364
add rename-branch command ( #576 )
2016-09-11 09:11:32 +05:30
罗泽轩
9d941e15e5
Merge pull request #569 from nicolaiskogheim/docs/repl-cleanup
...
git-repl: improve and clean up docs
2016-08-13 09:45:29 +08:00
Nicolai Skogheim
3efe6ab2df
git-repl: improve and clean up docs
2016-08-12 15:57:26 +02:00
Nimit Kalra
a319b6f25e
Merge pull request #568 from wcmonty/master
...
Add built in 'exit' command to git-repl
2016-08-12 08:29:04 -05:00
William Montgomery
d6f505f85a
Add 'exit' to git-repl command documentation
2016-08-12 08:21:31 -04:00
William Montgomery
554d779344
Add built in 'exit' command to git-repl
2016-08-11 15:45:51 -04:00
罗泽轩
fb3bc8d7ae
Merge pull request #567 from nicolaiskogheim/git-pull-request-fix#546
...
pull-request: should read local config if present
2016-08-07 17:08:12 +08:00
Nicolai Skogheim
ebe7448e67
pull-request: should read local config if present
2016-08-07 09:43:07 +02:00
Nimit Kalra
3aafbc68c1
Merge pull request #566 from nfischer/fix-man-page-typo
...
git-release: fix typo in documentation
2016-08-06 19:42:41 -05:00
Nate Fischer
8dbc34a6a7
git-release: fix typo in documentation
2016-08-06 17:39:31 -07:00
Nicolai Skogheim
e62a6584ca
Merge pull request #565 from nicolaiskogheim/git-missing-argument-parsing
...
git-missing: do proper argument parsing. Fix #562
2016-08-06 20:34:09 +02:00
Nicolai Skogheim
20b84f5b17
git-missing: do proper argument parsing. Fix #562
2016-08-06 03:04:01 +02:00
Nicolai Skogheim
5d15928e82
Merge pull request #563 from lukechilds/improve-fork
...
git-fork: use ssh remotes if possible
2016-08-04 14:13:55 +02:00
Luke Childs
93ae8fd81e
Update git-fork man page
2016-08-04 12:52:19 +01:00
Nicolai Skogheim
dcf94a3323
Merge pull request #564 from sorbits/patch-3
...
Remove a non-contributor from AUTHORS
2016-08-03 19:59:26 +02:00
Allan Odgaard
ce7cca1281
Remove a non-contributor from AUTHORS
2016-08-03 17:55:46 +02:00
Luke Childs
ca78ac71ba
Update docs to reflect new git-fork behaviour
2016-08-03 13:10:18 +01:00
Luke Childs
c87d59346b
Set fork remotes using ssh if available
2016-08-03 13:06:56 +01:00
Damien Tardy-Panis
9b3e25f407
Add git reauthor ( #548 )
...
Based on https://help.github.com/articles/changing-author-info/
2016-08-02 19:41:56 +02:00
Nicolai Skogheim
f3954e1974
Merge pull request #555 from spacewander/contributing
...
Add Contributing guideline
2016-07-31 14:04:17 +02:00
罗泽轩
d38d3f4ffa
modify CONTRIBUTING.md again
2016-07-30 22:49:06 +08:00
罗泽轩
5bceec4c16
Merge pull request #557 from spacewander/check_integrity
...
Add check integrity script
2016-07-30 22:48:22 +08:00
hemanth.hm
76f23c213d
Merge pull request #561 from lukechilds/improve-json-encoding
...
Improve JSON encoding
2016-07-30 15:11:30 +05:30
Luke Childs
82b6eb4331
Clean up git-pull-request
2016-07-30 10:36:14 +01:00
Luke Childs
a3c03d021e
Improve JSON encoding
2016-07-30 00:50:39 +01:00
Nimit Kalra
c1ac836c7f
Merge pull request #560 from lukechilds/patch-2
...
Fix incorrect comment in git-fork
2016-07-29 18:21:07 -05:00
Nimit Kalra
855053dcee
Merge pull request #559 from lukechilds/patch-1
...
Fix typo in Installation.md
2016-07-29 18:20:27 -05:00
Luke Childs
27e992b260
Fix incorrect comment in git-fork
2016-07-29 23:55:20 +01:00
Luke Childs
e18ee20d18
Fix typo in Installation.md
2016-07-29 23:49:32 +01:00
hemanth.hm
77036074ef
Merge pull request #558 from spacewander/fix_legacy_problem
...
Fix legacy problem
2016-07-29 10:21:42 +05:30
spacewander
66560432ce
add doc for git-pull-request and others
2016-07-29 11:39:39 +08:00
spacewander
311ef28b66
modify CONTRIBUTING.md
2016-07-29 11:33:55 +08:00
spacewander
5384091183
update check_integrity with nicolaiskogheim's patch
2016-07-29 11:26:03 +08:00
spacewander
a062420224
add git-release-patch to Commands.md
2016-07-28 22:24:40 +08:00
spacewander
88902b7586
add git-back to Commands.md
2016-07-28 22:24:40 +08:00
spacewander
3ff05a6f53
regenerate git-obliterate doc
2016-07-28 22:24:40 +08:00
spacewander
b33f85a5d1
follow common shebang
2016-07-28 22:24:40 +08:00
spacewander
c783733e16
add git-show-(un)merged-branches to Commands.md
2016-07-28 22:24:30 +08:00
spacewander
f60f127d57
Add check integrity script
2016-07-28 22:18:27 +08:00
spacewander
3de481706d
Add contributing guideline
2016-07-28 00:13:24 +08:00
hemanth.hm
0c8abf8624
Merge pull request #554 from npcode/fork-origin
...
Improve forking `origin` repo
2016-07-26 11:09:09 +05:30
Yi EungJun
dbf87bf94e
fork: Fetch origin after forking
2016-07-26 11:17:30 +09:00
Yi EungJun
362e08a2b6
fork: Quote refs by backtick rather than single quote
...
Follow what git does for the man pages[1].
[1]: 1249d8ad1c
2016-07-26 11:17:30 +09:00
Yi EungJun
90ea286a50
fork: Add git-fork.html removed by accident
2016-07-26 10:08:50 +09:00
hemanth.hm
1ec4835946
Merge pull request #553 from npcode/fork-origin
...
fork: Rename 'origin' to 'upstream' after forking
2016-07-25 22:32:14 +05:30
Yi EungJun
c9729611e4
fork: Describe the behavior if current dir is repo
2016-07-26 01:35:52 +09:00
Yi EungJun
6e65f37392
fork: Rename 'origin' to 'upstream' after forking
2016-07-26 01:22:30 +09:00
hemanth.hm
859bf38c67
Merge pull request #552 from npcode/fork-origin
...
fork: Fork 'origin' remote repo if repo is not given
2016-07-25 21:04:01 +05:30
Yi EungJun
76663c26db
fork: Fork 'origin' remote repo if repo is not given
2016-07-26 00:01:06 +09:00
hemanth.hm
a1c5742a70
Merge pull request #551 from spacewander/zsh-completion
...
submit zsh completion script
2016-07-22 08:41:57 +05:30
spacewander
299efd84af
submit zsh completion script to upstream
...
Now what you need is just `source /path/to/git-extras-completion.zsh`
2016-07-21 23:48:06 +08:00
spacewander
61c197bdbd
update the title of git-clear-soft
2016-07-21 22:57:34 +08:00
hemanth.hm
217f536606
Merge pull request #550 from phuu/patch-1
...
Add note about overwriting git aliases
2016-07-19 21:55:11 +05:30
Tom Ashworth
e2305d4501
Add note about overwriting git aliases
2016-07-19 16:43:27 +01:00
hemanth.hm
f50447e6bd
Merge pull request #547 from svanburen/patch-1
...
Fix typo
2016-07-12 23:22:38 +05:30
Stefan VanBuren
fece2a517a
Fix typo
2016-07-12 13:23:03 -04:00
hemanth.hm
eb046dcdb3
Merge pull request #545 from spacewander/via_ssh
...
fix git-fork by removing '.git'
2016-06-27 18:51:29 +05:30
spacewander
09bbb56a39
fix git-fork by removing '.git'
2016-06-27 19:43:07 +08:00
hemanth.hm
381a0ff1fb
Merge pull request #543 from spacewander/via_ssh
...
fix the support for forking via ssh
2016-06-27 12:28:28 +05:30
spacewander
34f5245672
fix the support for forking via ssh
2016-06-27 14:00:37 +08:00
hemanth.hm
1f374d1ea9
Merge pull request #412 from spacewander/git-obliterate
...
update git obliterate
2016-06-02 05:56:08 +05:30
hemanth.hm
1aadd1c52f
Merge pull request #536 from spacewander/delete_submodule
...
Update the way to delete submodule
2016-06-01 20:06:49 +05:30
hemanth.hm
becb14ad01
Merge pull request #537 from vigilancer/master
...
update documentation. fix "git ignore-io" flags
2016-05-25 14:22:02 +05:30
Andrey Elizarov
3c16905754
update documentation. fix "git ignore-io" flags
2016-05-25 07:01:10 +04:00
spacewander
a39c89e34e
Update the way to delete submodule
2016-05-17 17:20:03 +08:00
hemanth.hm
b485aabea0
Merge pull request #533 from Addvilz/add-git-clear-soft-modify-git-clear
...
Add git clear-soft, modify git clear to indicate explicit removal of files
2016-05-02 19:38:30 +05:30
Matiss
3783a27a39
Edit description of git clear-soft to indicate hard reset
2016-05-01 19:10:54 +02:00
Matiss
61fee79cc7
Add git-clear-soft command
...
Modify git-clear to indicate default behavior of removing git ignored files
2016-05-01 19:05:21 +02:00
hemanth.hm
e7826a717c
Merge pull request #513 from lgastako/master
...
Add -m flag to git-setup to set the initial commit message.
2016-04-20 21:45:36 +05:30
hemanth.hm
b865a2bae5
Merge pull request #525 from spacewander/git-standup
...
add git standup
2016-04-19 12:49:45 +05:30
hemanth.hm
24439aac6d
Merge pull request #526 from carrodher/patch-1
...
Add Ubuntu installation
2016-04-19 12:49:17 +05:30
Carlos Rodríguez
b8418cfba5
Add Ubuntu installation
2016-04-18 18:31:13 +02:00
spacewander
98f85c90b0
add docs for git standup
2016-04-15 20:34:03 +08:00
spacewander
c43d4f2539
add git-standup
2016-04-14 15:40:11 +08:00
Nimit Kalra
e91343e376
Merge pull request #519 from ifdattic/patch-1
...
Fix typo: typess => types
2016-03-19 13:25:26 -05:00
Andrew Marcinkevičius
301b436220
Fix typo: typess => types
2016-03-19 19:53:06 +02:00
hemanth.hm
ddb097d65d
Merge pull request #515 from ammarnajjar/fedora-install
...
Add Fedora package-manager installation instruction
2016-03-07 18:25:03 +05:30
Ammar Najjar
9090d3bbe9
Add Fedora package-manager installation instruction
2016-03-06 13:30:08 +01:00
John Evans
555282985d
Add -m flag to git-setup to set the initial commit message.
2016-03-03 01:12:19 -05:00
hemanth.hm
71cf48b0c1
Merge pull request #512 from Lee-W/master
...
Fix ignore-io searching bug
2016-02-16 09:50:39 +05:30
Lee Wei
56a2e27910
Merge pull request #1 from tj/master
...
Update with the upstream
2016-02-16 11:30:22 +08:00
LeeW
3603b67eb7
Fix ignore-io searching bug
2016-02-16 11:17:04 +08:00
hemanth.hm
ac0b5fe5ed
Merge pull request #508 from pra85/patch-1
...
Mention initial copyright year and add contributors to copyright
2016-01-30 18:05:26 +05:30
Prayag Verma
d286839da1
Mention initial copyright year and add contributors to copyright
...
I am not a lawyer but according to http://www.copyright.gov/circs/circ01.pdf (See screenshot of relevant section below), mentioning the first year of publication in the copyright is a good thing

Mentioning 2010 as the first release happened at that time - https://github.com/tj/git-extras/releases/tag/0.0.1
Also adding `Contributors` to copyright because TJ Holowaychuk is not the only person owning copyright for the whole project. The copyright is collectively owned by all contributors, or more precisely: every contributor owns a copyright on the code he or she has contributed.
The only way to retain full copyright over code is to ask for signing contributor's agreement before merging in changes. This is, in fact, what some companies who license commercially their free software do.
2016-01-30 17:30:04 +05:30
Nimit Kalra
edbcb3f4c0
Merge pull request #509 from supercrabtree/master
...
Fix Typo in `git-clear` Documentation.
2016-01-30 00:25:59 -06:00
George Crabtree
511c135e2f
Fix typo in git-clear documentation
2016-01-28 22:18:36 +11:00
Nimit Kalra
8a8a483f41
Bump version to 4.2.0-dev.
2016-01-24 15:07:09 -06:00
Nimit Kalra
0ca4c6f221
Version 4.1.0
2016-01-24 15:04:10 -06:00
hemanth.hm
5b45eb702b
Merge pull request #503 from spacewander/fix_502
...
Fixes #502
2016-01-24 19:48:38 +05:30
hemanth.hm
a4a001dde9
Merge pull request #507 from rstacruz/git-pr-manual
...
Regerenate git-pr.html
2016-01-23 18:10:41 +05:30
Rico Sta. Cruz
9d2df44d18
Regerenate git-pr.html
2016-01-22 20:51:36 +08:00
hemanth.hm
e6cdd2cf56
Merge pull request #506 from rstacruz/git-pr-manual
...
Update git PR manual to mention URLs
2016-01-22 15:39:24 +05:30
Rico Sta. Cruz
0fde295f5e
Update git PR manual to mention URLs
2016-01-22 18:01:28 +08:00
spacewander
a192fe688a
handle GIT_EDITOR which contains space
2016-01-20 18:48:19 +08:00
spacewander
afce25cd65
use ps -f and awk to emulate pgrep
...
There is no pgrep in git for windows
2016-01-20 11:39:25 +08:00
Nimit Kalra
98d0d8c642
Merge pull request #500 from kumon/master
...
Add "sync" command.
2016-01-16 23:41:03 -06:00
Takuma Yamaguchi
f0ecd82129
add upstream check & bugfix
2016-01-17 00:56:45 +09:00
Takuma Yamaguchi
19ece6192e
add example of git-sync
2016-01-16 01:47:30 +09:00
Takuma Yamaguchi
3481ff245e
upstream is used by default
2016-01-16 01:40:10 +09:00
Nimit Kalra
642eedeab5
Merge pull request #497 from JanSchulz/win_inst2
...
Update windows install.cmd
2016-01-14 12:49:25 -06:00
Takuma Yamaguchi
12e416a324
add git-sync
2016-01-14 00:19:12 +09:00
Nimit Kalra
e7083decec
Merge pull request #499 from tj/add-bsd-installation
...
Add BSD installation instructions.
2016-01-09 18:03:36 -06:00
Nimit Kalra
e6398ba24f
Add BSD installation instructions.
...
Fixes #498 .
2016-01-09 18:03:19 -06:00
Jan Schulz
64f9e4d797
installation.md: Update information about column.exe
...
column.exe will be available in the next git release:
https://github.com/git-for-windows/build-extra/pull/92
Also convert tabs to spaces... Was mixed up to now :-/
2016-01-06 15:54:04 +01:00
Jan Schulz
6bf64fbb23
install.cmd: add a check for write rights to the install folder
...
This was happening earlier as well, but the error messages were the
raw messages from the failed writes...
2016-01-06 15:54:03 +01:00
Jan Schulz
a20d4bc890
install.cmd: properly escape the ! in the shebang line
...
This was a regression introduced by the useage of `enabledelayedexpansion`,
which results in `!` treated as variable identifier like `%`. The result
was that git didn't treat the scripts as git commands...
2016-01-06 15:53:49 +01:00
hemanth.hm
2ef6df6182
Merge pull request #496 from JanSchulz/win_inst
...
Make the win installer more robust
2016-01-06 12:43:58 +05:30
Jan Schulz
672c87e9e4
Make the win installer more robust
...
User visible:
* Also accept the git install path (and not the mingw64 subdir) as a user
supplied install location. Make it the new default and warn the user if
a mingw64 dir is supplied (=this dir is not checked, so it might be
anywhere...)
* Find git.exe in path and use that as an install location
* Add error|status messages and output less noise (robocopy)
* do some check if column.exe is not found...
* adjust the installation text for windows...
not user visible:
* more.exe does not work when used in a cmd which has a unicode codepage
-> save the current codepage and set a sane default during the install
* do some "magic" with quotes around path variables -> makes it work with
pathes with spaces in it (both final git dir and the git-extra checkout)
* Do not leak variables to the sourounding interpreter
2016-01-05 15:57:09 +01:00
hemanth.hm
ef73afb39e
Merge pull request #494 from apjanke/fix-git-repo-inclusion
...
Makefile: fix inverted list of commands that use is_git_repo
2016-01-05 16:27:11 +05:30
hemanth.hm
cf0fa9da2d
Merge pull request #495 from JanSchulz/patch-1
...
Update Installation.md
2016-01-05 15:58:38 +05:30
Jan Schulz
7ec7a18671
Update Installation.md
...
Update windows install instructions.
2016-01-05 11:24:41 +01:00
Andrew Janke
a1530d90f2
Makefile: fix inverted list of commands that use is_git_repo
2015-12-31 20:28:13 -05:00
Nimit Kalra
90ba942cf6
Add Gitter badge.
2015-12-29 12:31:11 -06:00
Nimit Kalra
39ed77253c
Bump version to 4.1.0-dev.
2015-12-29 00:03:19 -06:00
Nimit Kalra
94556f380b
Version 4.0.0
2015-12-28 22:42:20 -06:00
Nimit Kalra
bb02bdcd55
Add David Rogers to AUTHORS.
2015-12-28 22:32:11 -06:00
Nimit Kalra
1ff64e2fed
Merge pull request #481 from al-the-x/multi-file-touch
...
Make `git-touch` behave like `touch` when passed multiple files.
2015-12-28 22:17:01 -06:00
David Rogers
2b042bdd59
Better USAGE message
2015-12-28 14:07:09 -05:00
David Rogers
64639e1437
Touch multiple files supplied
2015-12-28 14:06:30 -05:00
David Rogers
3c874ce9f4
Use $@ instead of $* re #467
...
Blind first pass so that I have a PR to remind me...
2015-12-28 13:53:49 -05:00
Nimit Kalra
176ebf9da1
Update AUTHORS.
2015-12-28 01:32:21 -06:00
Nimit Kalra
168f59e772
Merge pull request #490 from apjanke/etc-under-prefix
...
installation: put $SYSCONFDIR (etc) under $PREFIX by default
2015-12-28 00:01:31 -06:00
Andrew Janke
cbad7c63eb
installation: put $SYSCONFDIR (/etc) under $PREFIX by default
2015-12-28 00:45:04 -05:00
Nimit Kalra
d46c515d6d
Merge pull request #489 from apjanke/customize-etcdir
...
Makefile: allow customizing of SYSCONFDIR (/etc) location.
2015-12-27 17:11:02 -06:00
Andrew Janke
4354cca461
Makefile: allow customizing of SYSCONFDIR (/etc) location
2015-12-27 17:14:17 -05:00
Nimit Kalra
4c06b7f074
Merge pull request #488 from apjanke/git-clear-shebang
...
Fix missing shebang in git-clear and missing +x on others.
2015-12-27 14:10:56 -06:00
Andrew Janke
a09eefde25
Fix missing shebang in git-clear and missing +x on others
2015-12-27 15:02:55 -05:00
Nimit Kalra
91ca995edc
Update all man pages.
2015-12-27 11:26:38 -06:00
hemanth.hm
35e1f7845a
Merge pull request #479 from JanSchulz/global_gitignore
...
Add more info how to set global gitignore
2015-11-03 07:47:46 +05:00
hemanth.hm
1d8534b9cd
Merge pull request #448 from Lee-W/master
...
Add git-ignore-io
2015-10-28 10:15:40 +05:30
Jan Schulz
b4f4dd1197
Add more info how to set global gitignore
2015-10-22 11:28:17 +02:00
Nimit Kalra
106acae943
Regenerate git-changelog man pages (.html and .1) for #471 .
2015-10-18 13:44:45 -05:00
Nimit Kalra
b804d36a21
Merge pull request #471 from JanSchulz/merge-changelog
...
git-changelog: option to only use merges
2015-10-18 13:22:30 -05:00
Jan Schulz
5a80928b89
git-changelog: option to only use merges
...
using `-m` or `--merges-only` will only show the merge
commit messages. It will also use the body of the merge
commit message in addition to the subject, as github merges
usually have a useless subject line for commit messages.
If used with `-n/--no-merges`, the last one specified will win.
2015-10-18 16:11:10 +02:00
hemanth.hm
889a65883f
Merge pull request #469 from JanSchulz/windows-install
...
Use the default installation path in install.cmd
2015-10-18 18:36:42 +05:30
hemanth.hm
7dce2bbbdf
Merge pull request #468 from spacewander/use-real-purplish
...
use real purplish
2015-10-18 18:36:22 +05:30
Jan Schulz
546ddf78af
Use the default installation path in install.cmd
2015-10-17 12:25:14 +02:00
spacewander
7f662708fa
use real purplish
2015-10-13 23:54:52 +08:00
hemanth.hm
f799e96910
Merge pull request #466 from anarcat/master
...
add simple sed command
2015-10-10 09:43:36 +05:30
hemanth.hm
dfe0c79f45
Merge pull request #465 from spacewander/fix-color
...
Fix color
2015-10-10 09:42:55 +05:30
Antoine Beaupré
4b795fc42f
add simple sed command
2015-10-08 16:13:27 -04:00
spacewander
77f1c86b0d
disable color if the output is not printed to tty
2015-10-08 16:45:53 +08:00
spacewander
02a440953b
replace wildcard '?' to literal '?'
...
Previously the `?` in the case statement will match any single letter.
As a result, `git scp a` will act as the same as `git scp -h`.
What we actually need is a literal '?'.
2015-10-08 14:06:46 +08:00
spacewander
7ae2e0b9ef
git-scp: use portable terminal escape sequences
2015-10-08 10:24:31 +08:00
hemanth.hm
c4cd2ca34d
Merge pull request #460 from apjanke/summary-defensive-locale
...
git-summary: protect against character encoding issues with LC_ALL=C
2015-10-02 22:05:27 +05:30
hemanth.hm
d82c9b4576
Merge pull request #458 from apjanke/makefile-refactor-libs
...
Makefile: refactor is-git-repo inclusion logic
2015-10-02 22:05:09 +05:30
hemanth.hm
166f9599e7
Merge pull request #459 from apjanke/effort-portable-colors
...
git-effort: use portable terminal escape sequences
2015-10-02 22:03:54 +05:30
Andrew Janke
19f66943cb
git-summary: protect against character encoding issues with LC_ALL=C
2015-10-02 08:35:04 -04:00
Andrew Janke
b2817c7299
git-effort: use portable terminal escape sequences
...
Also uses "default color" instead of "black" for the low-activity things, so
it still shows up on colorschemes that have dark backgrounds.
2015-10-02 06:35:38 -04:00
Andrew Janke
ed7dcb7682
Makefile: refactor is-git-repo inclusion logic
...
This avoids the need for a big repeated block of code.
2015-10-02 05:47:08 -04:00
hemanth.hm
faaae9fa6b
Merge pull request #454 from apjanke/makefile-escape-mktemp
...
Makefile: escape $ used inside eval as shell variable
2015-10-02 13:35:35 +05:30
Andrew Janke
5b285380e7
Makefile: escape $ used inside eval as shell variable
2015-10-02 03:48:53 -04:00
hemanth.hm
cc488a035d
Merge pull request #453 from jhnns/pr-url
...
Add possibility to also checkout pull requests based on GitHub urls
2015-09-26 13:16:36 +05:30
Johannes Ewald
7b74567550
Add possibility to also checkout pull requests based on GitHub urls
2015-09-24 16:11:06 +02:00
hemanth.hm
bb1623ba5d
Merge pull request #452 from akimd/summary-locale
...
summary: beware of locale issues, and pass options to line-summary
2015-09-23 23:00:42 +05:30
Akim Demaille
5f61bfad6e
summary: beware of locale issues, and pass options to line-summary
...
* bin/git-summary: here.
2015-09-23 19:27:19 +02:00
hemanth.hm
332bec0f1a
Merge pull request #443 from Natim/patch-1
...
Make sure git-authors doesn't return twice the same ones.
2015-09-22 11:44:40 +05:30
hemanth.hm
91aff4fe20
Merge pull request #444 from spacewander/install_without_alias
...
add alias conflict prompt
2015-09-22 11:44:22 +05:30
hemanth.hm
f8b81131a5
Merge pull request #446 from ssssam/fix-active-days
...
effort, summary: Correctly estimate the number of active days
2015-09-22 11:44:11 +05:30
hemanth.hm
60098c9629
Merge pull request #447 from RichardLitt/patch-1
...
Alphabetized list
2015-09-22 11:43:56 +05:30
LeeW
81e8a45b38
Update git-ignore-io mannual
2015-09-20 18:44:40 +08:00
LeeW
37d6012791
Replace "export" option with "replace" in git-ignore-io
2015-09-19 09:54:53 +08:00
LeeW
07505518fa
Remove exclamation mark
2015-09-19 01:00:31 +08:00
LeeW
88c3437a24
Remove warning when search without word.
...
* Show usage only
2015-09-19 00:42:23 +08:00
LeeW
b517022e15
Fix typo
2015-09-19 00:37:38 +08:00
LeeW
8d0eae5c7f
Add warning when there is not argument after search, append and export
2015-09-17 21:32:10 +08:00
LeeW
61bfc44eec
Fix ~/.gi_list not exist problem
2015-09-17 21:19:45 +08:00
Richard Littauer
c0ad975f22
Alphabetized list
2015-09-14 11:01:35 -04:00
Sam Thursfield
6a000ec99b
effort, summary: Correctly estimate the number of active days
...
The output of `git log` is not exactly in chronological order. The
default sort option (--date-order) is described in the man page as
follows:
Show no parents before all of its children are shown, but otherwise
show commits in the commit timestamp order.
The `uniq` program will only remove duplicate lines if they follow each
other. In order for this to work correctly, we need to ensure that the
list of dates is exactly in chronological order. There doesn't seem to
be a `git log` option to achieve this, but we can use the `sort`
program. I used reverse sort (`sort -r`) since the output will be roughly
reverse-sorted already.
It's also worth noting that the default --date-order option sorts by
commit date, but git-summary uses *author* date (%ai). Passing
--author-date-order doesn't fix this issue, though, so I didn't change
that.
At the time of writing, this change reduces the number of 'active days'
for git-extras.git from 367 to 331.
2015-09-14 13:32:10 +01:00
hemanth.hm
c8aca55cd7
Merge pull request #445 from nicolaiskogheim/straighten-up-effort
...
Straighten up effort
2015-09-14 14:55:54 +05:30
Nicolai Skogheim
80f060b213
effort: change order of arguments to function
...
This makes git effort less prone to failing if
someone passes formatting options
2015-09-14 00:00:39 +02:00
Nicolai Skogheim
e91fd9623f
effort: add usage message
2015-09-13 23:56:56 +02:00
Nicolai Skogheim
86e1a7014c
effort: More robust argument parsing
...
Why:
* The old way of handling arguments could make it
difficult to make non-breaking changes because
to be able to handle more arguments than the
'--above' argument, the logic would need to be heavily
refactored and demand restrictions on argument order.
This change addresses the need by:
* Parse arguments in a cleaner way
* Make the command more future proof with respect to arguments
Notable change is the synopsis. Please the see man page.
2015-09-13 23:55:28 +02:00
spacewander
9916356b14
add alias conflict prompt
2015-09-13 09:55:49 +08:00
hemanth.hm
26a8b901a0
Merge pull request #440 from spacewander/features/feature-alias
...
add alias to git-feature
2015-09-12 11:49:01 +05:30
LeeW
490d12b6f7
Add full name for list option
2015-09-12 08:15:29 +08:00
LeeW
0393d560f8
Fix usage error
2015-09-12 08:04:47 +08:00
Rémy HUBSCHER
639210660e
Make sure git-authors doesn't return twice the same one.
2015-09-11 20:14:36 +02:00
spacewander
f6f45990ab
update git-feature docs
2015-09-11 20:23:20 +08:00
spacewander
38c7b03372
add alias to git-feature
2015-09-11 20:23:17 +08:00
LeeW
2c1d766640
Modify print_last_modified_time to make it Linux compatible
2015-09-09 18:42:28 +08:00
hemanth.hm
80a7928b67
Merge pull request #441 from spacewander/features/remove-checkout
...
remove duplicate checkout
2015-09-08 20:16:23 +05:30
LeeW
9b89da3a95
Merge branch 'master' of https://github.com/Lee-W/git-extras
2015-09-08 21:04:32 +08:00
LeeW
b988558ea4
Fix doc error for git-ignore-io
2015-09-08 21:04:13 +08:00
LeeW
469434a8eb
Fix doc error for git-ignore-io
2015-09-08 21:01:20 +08:00
LeeW
6073594656
Remove redundant \n in tr
2015-09-08 20:59:08 +08:00
LeeW
fed97bf8db
Not to update list each time git-ignore-io is executed
...
* Check whether the list exists. If not, get it.
* Update should use -u option manually
2015-09-08 20:57:06 +08:00
LeeW
3ad2f6fa4a
Refactor git-ignore-io and remove .gitignore
2015-09-08 20:23:53 +08:00
LeeW
ccd5303040
Update manual and description in Commands
2015-09-08 19:42:20 +08:00
spacewander
a7f830b1e7
remove duplicate checkout
2015-09-08 16:08:50 +08:00
LeeW
967b51c964
Generate manual using ronn for git-ignore-io
2015-09-07 22:37:56 +08:00
LeeW
2ced182fcc
Finish manual for git-ignore-io
2015-09-07 22:24:40 +08:00
LeeW
98bbfe7968
Fix typo
2015-09-07 22:20:20 +08:00
LeeW
a1d0445cc1
Add description to Commands.md for git-ignore-io
2015-09-07 21:41:59 +08:00
LeeW
4a8037fa62
Implement search function or git-ignore-io
2015-09-06 22:49:32 +08:00
LeeW
d87599c344
Remove help from git-ignore-io
2015-09-06 22:18:29 +08:00
LeeW
37aacf3e41
Init gitignore and ignore vim osx temp files
2015-09-06 20:01:34 +08:00
LeeW
87d61693b1
Merge gi_extension project into git extras as git-ignore-io
...
* gi_extension(https://github.com/Lee-W/gi_extension )
2015-09-06 19:58:17 +08:00
hemanth.hm
bb4acf0757
Merge pull request #436 from nwinkler/patch-1
...
Updated documentation for git-ignore
2015-09-05 16:44:36 +05:30
hemanth.hm
0e05f63147
Merge pull request #437 from nwinkler/patch-2
...
Fixed typo in install.sh
2015-09-05 16:44:14 +05:30
Nils Winkler
30747be220
Fixed typo in install.sh
...
s/exras/extras/
2015-09-04 13:44:51 +02:00
Nils Winkler
55bfebbc21
Updated documentation for git-ignore
...
* Updated output for `git ignore`
* Added description and examples for `git ignore -g` and `git ignore -l`
2015-09-04 11:09:32 +02:00
hemanth.hm
e042c5ceb7
Merge pull request #435 from nwinkler/patch-1
...
Added details to git-pr documentation
2015-09-03 14:22:15 +05:30
Nils Winkler
da76b2ae86
Added details to git-pr documentation
...
Details for:
* Using a remote other than `origin` by providing it in the second parameter.
* Using the `clean` parameter to remove all local `pr/*` branches.
2015-09-03 10:50:27 +02:00
hemanth.hm
1eba324e94
Merge pull request #433 from grindhold/git-clear
...
Git clear
2015-09-03 11:30:34 +05:30
grindhold
a66c9446b5
made more precise security-question.
2015-09-01 15:17:14 +02:00
grindhold
dae38840f9
more concise implementation of git-clear
2015-09-01 13:28:29 +02:00
Nicolai Skogheim
0c7bf665f2
Fix typo in variable name
2015-08-29 15:31:10 +02:00
grindhold
ecf7f05f12
added git-clear to Commands.md
2015-08-26 22:20:09 +02:00
grindhold
2c855e991c
added manpage for git-clear
2015-08-26 22:13:12 +02:00
grindhold
ad7811e991
implemented git-clear
...
i wanted a simple command to restore the state of a repo as if it was
freshly cloned with the current HEAD. This is basically git reset --hard
with deletion of all untracked files that are in the repo.
2015-08-26 21:58:22 +02:00
hemanth.hm
dae750f734
Merge pull request #432 from stevemao/patch-1
...
fix link of `git feature|refactor|bug|chore`
2015-08-26 12:08:21 +05:30
Steve Mao
7b06400ac7
fix link of git feature|refactor|bug|chore
2015-08-25 16:00:39 +10:00
hemanth.hm
6808b0fd79
Merge pull request #425 from nicolaiskogheim/makefile-fix
...
Set default make task to be install
2015-08-20 16:28:43 +05:30
Nicolai Skogheim
7e147993d4
Mark default task as .PHONY
2015-08-20 12:47:50 +02:00
hemanth.hm
afb905c5ae
Merge pull request #430 from spacewander/git-extras
...
make it possible to update via `git extras`
2015-08-16 09:28:41 +05:30
luozexuan
5fb7f6b77c
make it possible to update via git extras
2015-08-16 11:47:16 +08:00
hemanth.hm
3b02c65a94
Merge pull request #428 from spacewander/update-commands
...
update Commands.md
2015-08-14 17:12:20 +05:30
hemanth.hm
ad83e447a6
Merge pull request #429 from nicolaiskogheim/merge-into-ff-only
...
merge-into: change --ff option to --ff-only
2015-08-14 17:12:05 +05:30
Nicolai Skogheim
2d8b703e7c
merge-into: change --ff option to --ff-only. fix #421
2015-08-14 13:03:39 +02:00
luozexuan
11fd45791b
update Commands.md
2015-08-14 14:49:32 +08:00
hemanth.hm
17b82ec9ee
Merge pull request #411 from Natim/add-psykorebase-command
...
Add the git-psykorebase command.
2015-08-11 16:02:39 +05:30
Rémy HUBSCHER
fa4c5dd456
Improve man page presentation.
2015-08-11 11:30:36 +02:00
Rémy HUBSCHER
84699acc6e
Add documentation.
2015-08-11 11:26:52 +02:00
hemanth.hm
3632ad959f
Merge pull request #426 from spacewander/update-for-new-version
...
abort git-alias when too many arguments given.
2015-08-09 17:21:42 +05:30
spacewander
9859396131
change 'search-term' to 'search-pattern'
2015-08-09 19:33:13 +08:00
spacewander
98a1820d39
abort git-alias when too many arguments given.
...
Avoid incorrect usage probably because of the missing quotes, like "git
alias cm checkout master"
2015-08-09 19:27:49 +08:00
hemanth.hm
ad75f873af
Merge pull request #423 from nicolaiskogheim/effort-paths
...
effort: document that it takes any path, not just filenames
2015-08-08 20:46:25 +05:30
hemanth.hm
dc498c0614
Merge pull request #424 from nicolaiskogheim/fork-docs
...
fork docs: change SSH to HTTPS in example
2015-08-08 20:45:39 +05:30
hemanth.hm
2912d3522c
Merge pull request #422 from nicolaiskogheim/effort-bugfix
...
effort: fix active days always 1
2015-08-08 20:43:27 +05:30
Nicolai Skogheim
b1fba8f3fe
effort docs: add note about omitting unsorted results
2015-08-08 09:06:54 +02:00
Nicolai Skogheim
d51f4fde37
effort docs: add example with directories
2015-08-08 09:06:54 +02:00
Nicolai Skogheim
d367affd57
effort docs: filename -> path
2015-08-08 09:06:54 +02:00
Nicolai Skogheim
96329378b9
effort docs: Adjust numbers in example
...
The values shown can never appear, and makes no sense.
2015-08-08 09:06:54 +02:00
Nicolai Skogheim
4527656f7c
effort: rename 'file' to 'path' to be more accurate
2015-08-08 09:06:54 +02:00
Nicolai Skogheim
bd05487375
Set default make task to be install
2015-08-08 07:06:31 +02:00
Nicolai Skogheim
09e039ceae
fork docs: change SSH to HTTPS in example
2015-08-08 05:06:31 +02:00
Nicolai Skogheim
7de280f12f
effort: fix active days always 1
...
Introduced in cdb773c06 (Fix error on FreeBSD with process substitution)
when trying to squash a bug.
This fix should be valid for that bug as well.
2015-08-08 02:44:55 +02:00
hemanth.hm
2113e8c1d7
Merge pull request #419 from nicolaiskogheim/git-guilt
...
[RFC] guilt: small fixes
2015-08-07 16:43:09 +05:30
hemanth.hm
5c27f6b2d1
Merge pull request #420 from nicolaiskogheim/git-summary
...
summary and line-summary. docs and style
2015-08-07 16:42:40 +05:30
Nicolai Skogheim
ff4ad92a7a
line-summary: 'function f{...' -> 'f() {...'
...
We use this style more often
2015-08-07 08:36:56 +02:00
Nicolai Skogheim
40023f9f14
line-summary: add missing quotation marks
2015-08-07 08:36:56 +02:00
Nicolai Skogheim
b9ca124980
line-summary: tighten regex
2015-08-07 08:36:56 +02:00
Nicolai Skogheim
7fbe00c311
summary docs: Remove --line example
...
Since using --line only makes git-summary call git-line-summary
the example is redundant. It is also somewhat smelly to document
other functions than it's own like that.
2015-08-07 08:36:55 +02:00
Nicolai Skogheim
ca4cb46dde
summary docs: explain relation to git-line-summary
2015-08-07 08:36:55 +02:00
Nicolai Skogheim
cdc4d8a0cf
summary docs: use correct order of arguments
...
If you were to follow the docs on git-summary(1),
it would crash.
2015-08-07 08:36:55 +02:00
Nicolai Skogheim
8b4e50f74a
guilt: remove --help option
...
git overrides execution when --help is given,
showing the man page for the command
2015-08-07 08:35:32 +02:00
Nicolai Skogheim
aeebb1c1c1
guilt: document call without arguments
2015-08-07 08:35:32 +02:00
Nicolai Skogheim
a212a78c1b
guilt docs: Capitalize letters
2015-08-07 08:35:32 +02:00
Nicolai Skogheim
ea0af0c391
guilt: Adds simplified example
2015-08-07 08:35:32 +02:00
hemanth.hm
8a559a070a
Merge pull request #418 from nicolaiskogheim/fork-bugfix
...
fork: http-urls had colon instead of slash
2015-08-05 11:58:26 +05:30
spacewander
d5e10f6701
add missing git-obliterate documentation
2015-08-05 10:51:08 +08:00
Nicolai Skogheim
8f1729d5f7
fork: http-urls had colon instead of slash
2015-08-05 04:27:32 +02:00
hemanth.hm
db95415385
Merge pull request #416 from nicolaiskogheim/fork-docs
...
fork: original->upstream in docs
2015-08-05 03:12:02 +05:30
hemanth.hm
f943a2db50
Merge pull request #415 from nicolaiskogheim/contrib-docs
...
contrib: update docs
2015-08-05 03:11:37 +05:30
Nicolai Skogheim
04b63cbc10
fork: original->upstream in docs
2015-08-04 19:53:49 +02:00
Nicolai Skogheim
7b287a8ea7
contrib: update docs
2015-08-04 19:19:46 +02:00
hemanth.hm
ddfd3d9752
Merge pull request #414 from nicolaiskogheim/alias-docs
...
alias: docs
2015-08-04 06:17:23 +05:30
Nicolai Skogheim
c4ffb30410
alias: docs
...
Fixes a formatting issue (markdown).
Ran manning-up.sh, which brought in changes
from an earlier commit also
2015-08-04 02:32:58 +02:00
spacewander
94bf129721
now we can specify a commit range for git-obliterate
2015-08-01 20:39:02 +08:00
Rémy HUBSCHER
3039f9405e
Add completion for git-psykorebase.
2015-07-31 17:06:22 +02:00
Rémy HUBSCHER
d8395ba2e9
Create a bash version of git-psykorebase — Fixes #411
2015-07-31 16:22:58 +02:00
hemanth.hm
3c5523617e
Merge pull request #409 from nicolaiskogheim/refactor-alias
...
Refactor alias
2015-07-29 17:51:23 +05:30
Nicolai Skogheim
9629fdf13c
alias: polish the docs
2015-07-29 13:19:18 +02:00
Nicolai Skogheim
24ad1c8281
alias: bugfix
...
'git alias <search-term>' did not work.
2015-07-29 13:15:34 +02:00
hemanth.hm
3a8c947922
Merge pull request #408 from nicolaiskogheim/refactor-contrib
...
contrib: refactor, and conform to git
2015-07-29 16:06:42 +05:30
Nicolai Skogheim
4b4276e3fc
contrib: refactor, and conform to git
2015-07-29 12:03:45 +02:00
hemanth.hm
371dcdff13
Merge pull request #405 from nicolaiskogheim/fix-filenames-with-spaces
...
Make git effort not crash when passed file names with spaces
2015-07-29 13:36:24 +05:30
hemanth.hm
46db56905d
Merge pull request #404 from nicolaiskogheim/freebsd-fix
...
Make git effort run on FreeBSD
2015-07-29 13:36:00 +05:30
hemanth.hm
f0194060c5
Merge pull request #406 from nicolaiskogheim/portable-msysgit
...
Portable msysgit
2015-07-29 13:35:09 +05:30
NANRI
22406cef6a
git-alias: use sed insted of colrm
...
PortableGit doesn't have colrm command.
2015-07-29 08:39:07 +02:00
NANRI
5e14c08fc5
git-changelog: use cp instead of mv
...
mv command cannot overwrite in PortableGit(msysgit).
2015-07-29 08:27:30 +02:00
NANRI
434b7681ce
git-extras: use git-help instead of man
...
PortableGit doesn't have man command.
2015-07-29 08:23:25 +02:00
NANRI
36f8f2ba1e
add install script for PortableGit(msysgit)
...
$(BINS) => /bin
$(MAN_HTML) => /doc/git/html
2015-07-29 08:20:10 +02:00
Nicolai Skogheim
526fb77823
Quote variables bc of filenames with spaces
2015-07-29 05:10:52 +02:00
Nicolai Skogheim
1956d385bd
Guard against 'seq 0'
...
Most implementations of seq yields no output for 'seq 0',
but some yields '1(newline)0'.
2015-07-28 21:23:50 +02:00
Nicolai Skogheim
cdb773c065
Fix error on FreeBSD with process substitution
2015-07-28 20:41:53 +02:00
Nicolai Skogheim
20e6455559
Pass --import-functions if required
...
This patch is the reason for this commit:
https://lists.freebsd.org/pipermail/svn-ports-all/2014-September/075090.html
2015-07-28 06:13:59 +02:00
hemanth.hm
8dbcd446db
Merge pull request #403 from andreicristianpetcu/master
...
effort: documentation for git effort --since #326
2015-07-27 18:09:11 +05:30
Andrei Petcu
c2ea7f081a
effort: documentation for git effort --since #326
2015-07-27 15:23:57 +03:00
hemanth.hm
f40e6c37a6
Merge pull request #401 from nicolaiskogheim/effort-above-error-on-NaN
...
effort: error out on bad value to --above
2015-07-25 13:05:00 +05:30
Nicolai Skogheim
6ebfdc5329
effort: error on bad value to --above
2015-07-25 09:09:39 +02:00
hemanth.hm
d97faf2424
Merge pull request #400 from nicolaiskogheim/fix-off-by-one
...
effort: don't count untouched files
2015-07-25 12:17:34 +05:30
hemanth.hm
651a2bac97
Merge pull request #391 from nicolaiskogheim/effort-limit-commits
...
[RFC] effort: Allow sending options to log. Fix #326
2015-07-25 11:52:06 +05:30
hemanth.hm
467d52a73e
Merge pull request #388 from chernjie/release
...
Run manning-up.sh
2015-07-25 11:51:06 +05:30
hemanth.hm
3dcf09f883
Merge pull request #398 from nicolaiskogheim/git-graft
...
graft: Require destination branch. Fix #23
2015-07-25 11:50:43 +05:30
hemanth.hm
b99a84691e
Merge pull request #399 from nicolaiskogheim/git-archive-file
...
archive-file: cleaner way to get current branch
2015-07-25 11:50:00 +05:30
Nicolai Skogheim
95db4e7ad5
archive-file: cleaner way to get current branch
2015-07-25 06:09:43 +02:00
Leila Muhtasib
3d0b4feb80
graft: Require destination branch. Fix #23
...
This is to avoid the old behaviour of automatically
merging into master.
2015-07-25 04:16:09 +02:00
Nicolai Skogheim
329106c845
effort: don't count untouched files
2015-07-25 03:16:18 +02:00
Nicolai Skogheim
78de79ce96
Add info about new options to man pages
2015-07-24 18:57:46 +02:00
Nicolai Skogheim
6ba68941e8
Add completion for more options to effort
2015-07-24 18:57:46 +02:00
Nicolai Skogheim
ba5e5989a3
Do proper argument parsing
2015-07-24 18:57:34 +02:00
Nicolai Skogheim
fd72edd98f
effort: allow sending options to log. Fix #326
2015-07-23 01:15:10 +02:00
hemanth.hm
7d1ede1022
Merge pull request #396 from tocker/bug/changelog-catch-head
...
Catch "HEAD -> master" when creating the changelog
2015-07-20 12:26:31 +05:30
Amir Tocker
7ddd1f7a60
Catch "HEAD -> master" when creating the changelog
...
git log may report `(HEAD -> master, tag:...)` instead of `(HEAD, tag:...)`.
2015-07-20 09:38:14 +03:00
hemanth.hm
8652172f9b
Merge pull request #394 from markeissler/changelog-signal-trap
...
Handle signals in git-changelog.
2015-07-16 09:25:45 +05:30
Mark Eissler
4ff5dc1ee0
Remove unused var.
2015-07-15 08:34:06 -07:00
hemanth.hm
d0e667961c
Merge pull request #390 from nicolaiskogheim/effort-color-relative-to-above
...
effort: Make coloring respect --above. Fix #74
2015-07-12 22:11:41 +05:30
Mark Eissler
4fd095b741
Handle signals in git-changelog.
2015-07-10 18:11:18 -07:00
Nicolai Skogheim
a7064395c2
Meke coloring respect --above. Fix 74
2015-07-10 03:29:09 +02:00
hemanth.hm
fa3cf6ab41
Merge pull request #392 from nicolaiskogheim/WIP-effort-parallelize
...
[RFC] Improve speed of git effort
2015-07-10 05:44:00 +05:30
Nicolai Skogheim
935c5a37b3
Avoid spawning subshell
2015-07-08 18:59:10 +02:00
Nicolai Skogheim
39238ded46
Remove unnecessary call to cat
2015-07-08 18:56:00 +02:00
Nicolai Skogheim
203b7649a2
perf: reduce calls to git log
2015-07-08 18:52:51 +02:00
Nicolai Skogheim
73973049d6
Parallelize git-effort with xargs
2015-07-08 18:45:41 +02:00
Nicolai Skogheim
cb15c94eab
Alter options to git log. Remove pipe
2015-07-08 17:58:12 +02:00
CJ
fea722e7e9
cd man && ./manning-up.sh && git diff --stat | grep ' 2 ' | awk '{print }' | xargs git checkout --
2015-06-27 17:13:43 +08:00
hemanth.hm
392a2d67db
Merge pull request #386 from rstacruz/patch-2
...
Use https for git-fork
2015-06-23 10:45:13 +05:30
Rico Sta. Cruz
13842de9e0
Use https for git-fork
2015-06-23 12:57:30 +08:00
hemanth.hm
dc208cddda
Merge pull request #385 from gisphm/master
...
add install.cmd for installation on windows
2015-06-21 01:33:54 +05:30
gisphm
3707e2e826
added windows installation section in the Installation.md
...
Signed-off-by: gisphm <phmfk@hotmail.com>
2015-06-21 01:59:43 +08:00
gisphm
fd4fbd3950
format install.cmd
...
Signed-off-by: gisphm <phmfk@hotmail.com>
2015-06-21 01:06:47 +08:00
gisphm
3f7bcba984
add install.cmd for installation on windows
...
The script install.cmd has two environment variables PREFIX and HTMLDIR.
PREFIX is where your git is installed and HTMLDIR is the location of html files under PREFIX.
This script is written for msysgit installed from https://github.com/git-for-windows/git .
Signed-off-by: gisphm <phmfk@hotmail.com>
2015-06-20 19:18:04 +08:00
hemanth.hm
dafb457e81
Merge pull request #383 from Somasis/master
...
Makefile: Use a more portable mktemp invocation
2015-06-12 21:45:09 +05:30
Kylie McClain
a56d2a17e4
Makefile: Use a more portable mktemp invocation
2015-06-11 20:05:01 -04:00
hemanth.hm
8a3f9884c8
Using shorter URL
...
^
2015-06-08 09:24:16 +05:30
hemanth.hm
96bb7cb873
Merge pull request #381 from spacewander/master
...
installation with curl and bash
2015-06-08 09:19:37 +05:30
spacewander
51fbc16913
installation with curl and bash
2015-06-08 00:09:40 +08:00
hemanth.hm
02d6222031
Merge pull request #380 from spacewander/master
...
keep installation silent
2015-06-07 18:39:48 +05:30
spacewander
84c2d1014b
keep installation silent
2015-06-07 20:57:39 +08:00
hemanth.hm
f754d38f30
Merge pull request #378 from spacewander/master
...
update installation in `git-extras update`
2015-05-30 12:41:57 +05:30
spacewander
a498332c96
update installation in git-extras update
2015-05-30 12:31:23 +08:00
hemanth.hm
8283401d2b
Merge pull request #377 from go2null/master
...
FIXes 'mktemp' to work again on Linux
2015-05-29 09:09:24 +05:30
go2null
a67b42711d
FIXes location of -- for grep
...
Broken in 5b1ac3ccc6
`--` must be after all parameters (options), and before positional arguments
See https://unix.stackexchange.com/questions/11376/what-does-double-dash-mean-also-known-as-bare-double-dash
2015-05-28 11:59:29 +00:00
go2null
c7635f8f21
FIXes 'mktemp' to work again on Linux
...
Broken in 67241a46a8
`mktemp` for BSD (including OSX) requires a template, but it allows any number
of `X`s in the template.
(GNU) `mktemp` for Linux does not require a template, however, if a template is
specified, then the number of `X`s must be 6.
See http://unix.stackexchange.com/a/206111/117157
2015-05-28 11:22:52 +00:00
hemanth.hm
aecef0eaed
Merge pull request #373 from zlx/feature/document_line_summary
...
Document for git-line-summary
2015-05-15 12:23:57 +05:30
Newell Zhu
69af52b99e
Document for git-line-summary
2015-05-14 22:13:37 +08:00
hemanth.hm
a5da0ec34a
Merge pull request #372 from spacewander/patch-1
...
Install the latest release version of git-extras
2015-05-13 21:04:04 +05:30
spacewander
b1784fd378
install the latest release version of git-extras
...
Accoring to the talk in https://github.com/tj/git-extras/issues/371
2015-05-13 22:30:00 +08:00
hemanth.hm
9b45e6b831
Merge pull request #370 from phigoro/master
...
git-effort: replace "wc | cut" with "wc | awk"
2015-05-13 10:24:54 +05:30
phigoro
95e8812370
git-effort: replace "wc | cut" with "wc | awk"
...
It looks "cut" may have different behaviour, e.g. BSD one works the way
git-effort doesn't expect. "awk" looks to be one of possible fixes here.
2015-05-11 19:54:38 +03:00
hemanth.hm
4480479994
Merge pull request #369 from phigoro/master
...
align hashbang of git-guilt & git-merge-into
2015-05-10 21:27:35 +05:30
phigoro
09d967dfbd
align hashbang of git-guilt & git-merge-into
2015-05-10 12:01:38 +03:00
hemanth.hm
eb57e1f25c
Merge pull request #368 from zlx/feature/strong_line_summary
...
Fix some fatal for git-line-summary
2015-05-09 16:41:44 +05:30
Newell Zhu
72f08b1095
Fix Fatal for git-line-summary
...
1. Fix print format with special characters
2. Fix Fatal when exist special characters in git blame output
3. Fix raise error when exist not committed new files
2015-05-09 17:07:29 +08:00
hemanth.hm
6988f4325b
Merge pull request #365 from rkennedy/bug-ignore-regex2
...
Don't treat ignored patterns as regexps
2015-04-30 11:29:19 +05:30
Rob Kennedy
e2b6eaf028
Don't treat ignored patterns as regexps
...
Fixes #353 .
2015-04-29 22:48:16 -07:00
Hemanth.HM
438de98926
Version 3.0.0
2015-04-27 17:43:50 +05:30
hemanth.hm
c85443c326
Merge pull request #363 from chernjie/pre-release-docs
...
ran pre-release ./manning-up.sh
2015-04-27 13:51:43 +05:30
CJ
7d3e55a84a
run pre-release ./manning-up.sh
2015-04-27 15:24:13 +08:00
hemanth.hm
150f781d05
Merge pull request #362 from chernjie/git-scp
...
Updated documentation for git-scp and slight feature change
2015-04-27 12:37:40 +05:30
CJ
62dd4a2258
Updated documentation for git-scp and slight feature change
2015-04-27 15:05:17 +08:00
hemanth.hm
6e4152d3b0
Merge pull request #359 from chernjie/docs
...
Merge wiki into main repository
2015-04-27 06:33:38 +05:30
hemanth.hm
d1251c21db
Merge pull request #361 from markeissler/better-changelog-fixes
...
Fix git tag substring extraction for bash 3.2.
2015-04-26 00:32:47 +05:30
Mark Eissler
399bc037fa
Fix git tag substring extraction for bash 3.2.
2015-04-25 10:12:17 -07:00
hemanth.hm
e16e90e9b9
Merge pull request #360 from spacewander/master
...
correct the broken regex
2015-04-25 21:44:15 +05:30
hemanth.hm
b84faa58b6
Merge pull request #355 from markeissler/better-changelog-fixes
...
Fix git-changelog for compatibility for bash<4. Fixes #337 , #338
2015-04-25 20:40:19 +05:30
Mark Eissler
a1ac472f9e
Merge branch 'better-changelog-fixes' of github.com:markeissler/git-extras into better-changelog-fixes
2015-04-24 12:01:13 -07:00
spacewander
2810323aad
add support for git version below 2.2.0
2015-04-24 12:00:17 -07:00
Mark Eissler
80d680b0a6
Fix git-changelog for compatibility for bash<4. Fixes #337 , #338
...
Removed dependency on real associative arrays, which are not
support previous to bash 4.
2015-04-24 12:00:17 -07:00
Mark Eissler
fcbb25a882
Merge pull request #1 from spacewander/better-changelog-fixes
...
Add support for git version below 2.2.0
2015-04-24 09:58:44 -07:00
spacewander
b4a1fe0aa3
correct the broken regex
...
'*text' only matches string ended with 'text'. So it matches 'ASCII text',
but does not match 'ASCII text executable'. Before, `git summary
--line` just counts plain text file, now we fix it.
2015-04-24 23:13:16 +08:00
CJ
4bb6e3d47d
Rearrange documentation links, see #358
2015-04-23 21:46:09 +08:00
CJ
346f5519c7
Merge branch ' https://github.com/tj/git-extras.wiki/master ' into docs,
...
see #358
* wiki/master: (30 commits)
git merge-repo
add wiki for git-guilt
Update docs for revised git-changelog.
add wiki for git-merge-into
git scp #300
link to git delta
git delta usage
Add git-authors
Updated Commands (markdown)
Updated Commands (markdown)
Updated Commands (markdown)
Updated Commands (markdown)
Updated Commands (markdown)
Fix link to git feature command
Added a footer.
add a few keywords
some remaining dashes
roughly finished
Updated Commands (markdown)
Updated Commands (markdown)
...
2015-04-23 21:45:51 +08:00
hemanth.hm
3055a664f9
Merge pull request #357 from imsky/merge-repo
...
git-merge-repo
2015-04-20 08:31:53 +05:30
Ivan Malopinsky
05b0a5d3d5
git-merge-repo
2015-04-19 12:23:02 -04:00
Ivan Malopinsky
28982cbd2d
git merge-repo
2015-04-19 11:15:33 -04:00
spacewander
34c9a486bf
add wiki for git-guilt
2015-04-19 16:24:35 +08:00
spacewander
c143b75711
add support for git version below 2.2.0
2015-04-18 18:11:18 +08:00
Mark Eissler
61da46ff11
Fix git-changelog for compatibility for bash<4. Fixes #337 , #338
...
Removed dependency on real associative arrays, which are not
support previous to bash 4.
2015-04-16 14:03:47 -07:00
hemanth.hm
d6c155c477
Merge pull request #349 from spacewander/git-guilt
...
fix indentation errors in git guilt
2015-04-12 09:13:35 +05:30
spacewander
b375870693
fix indentation errors in git guilt
2015-04-12 11:22:55 +08:00
hemanth.hm
530e5778cc
Merge pull request #345 from spacewander/git-guilt
...
Hope to fix #341
2015-04-10 05:20:54 +05:30
spacewander
b109c866b7
Hope to fix #341
2015-04-10 00:58:59 +08:00
hemanth.hm
c00202d51e
Merge pull request #344 from Somasis/master
...
Prevent strange input and environment variables from causing issues
2015-04-09 09:21:25 +05:30
Kylie McClain
5b1ac3ccc6
use argument separator for usages of grep which can choke on weird input
2015-04-08 18:51:30 -04:00
Kylie McClain
336501382e
helper/reset-env: helper to prevent GREP_OPTIONS from causing issues
2015-04-08 18:50:41 -04:00
hemanth.hm
23c270bc0f
Merge pull request #342 from spacewander/git-guilt
...
add git guilt
2015-04-07 11:19:24 +05:30
spacewander
9f24b17b4a
add docs for git guilt
2015-04-06 16:23:01 +08:00
spacewander
888919c2e9
add git-guilt
2015-04-06 15:59:53 +08:00
hemanth.hm
a51fb418b2
Merge pull request #340 from spacewander/git-effort
...
sort unless there is only one item, fixes #339
2015-03-23 11:47:16 +05:30
spacewander
3330af6cd4
sort unless there is only one item
2015-03-22 22:55:15 +08:00
hemanth.hm
1a25e57069
Merge pull request #333 from paulschreiber/merged-branches
...
Fixes #332 git show-merged-branches and show-unmerged-branches
2015-03-18 19:12:08 +05:30
Paul Schreiber
00050b91da
add show-merged-branches and show-unmerged-branches
2015-03-18 09:33:02 -04:00
hemanth.hm
4398f110f1
Merge pull request #334 from paulschreiber/dont-delete-svn-branch
...
when deleting merged branches, preserve "svn" branch for git-svn
2015-03-18 10:30:05 +05:30
Paul Schreiber
668cc9ef78
when deleting merged branches, preserve "svn" branch for git-svn
...
Fixed #328
2015-03-17 14:00:40 -04:00
hemanth.hm
9b50ce3000
Merge pull request #324 from chernjie/git-ignore
...
Support ~ in git-ignore.
2015-03-17 13:24:23 +05:30
hemanth.hm
d8d33f5a3e
Merge pull request #331 from markeissler/better-changelog-fixes
...
git-changelog fixes
2015-03-17 09:18:52 +05:30
Mark Eissler
fbe171e280
Fix tag trapping when HEAD and tag point to same commit.
...
When the last tag is also the last commit, then we need to account
for a much longer tag output:
HEAD, tag: v1.0.1, origin/master, origin/HEAD,...
This fix strips out 'HEAD', the rest is handled by existing code.
2015-03-16 13:37:53 -07:00
Mark Eissler
29cd63bea2
Fix gitflow commit history output.
...
When gitflow is used, commits on merged feature branches were
appearing in the generated output with tags labeled as:
origin/feature/BRANCH_NAME
This fix filters out any 'tags' that include forward slashes,
which eliminates this behavior. The commits then appear as part
of the tag they were merged in with.
2015-03-16 12:16:10 -07:00
hemanth.hm
055abc3e4c
Merge pull request #327 from markeissler/better-changelog-completion
...
Updated bash completions for better-changelog.
2015-03-14 12:08:23 +05:30
Mark Eissler
de8d216c54
Updated bash completions for better-changelog.
2015-03-13 18:39:50 -07:00
Mark Eissler
634fbb54b8
Update docs for revised git-changelog.
2015-03-13 16:15:58 -07:00
hemanth.hm
e4ea8690db
Merge pull request #325 from markeissler/better-changelog
...
Complete rewrite to support commit ranges for pretty and list output.
2015-03-12 11:38:08 +05:30
Mark Eissler
49e8cf17a4
Complete rewrite to support commit ranges for pretty and list output.
2015-03-11 11:43:35 -07:00
CJ
522213a28f
Support ~ in add_patterns for git-ignore
2015-03-11 15:00:30 +08:00
CJ
bf89063212
Support ~ in show git-ignore
2015-03-11 15:00:24 +08:00
spacewander
b2c937e03a
add wiki for git-merge-into
2015-03-11 14:47:08 +08:00
hemanth.hm
06a8f74f28
Merge pull request #323 from spacewander/master
...
add git-merge-into.
2015-03-11 10:05:32 +05:30
spacewander
46525fbfe8
add docs for git-merge-into
2015-03-10 23:50:09 +08:00
spacewander
d94663312f
add merge-into to merge two branches quickly
2015-03-10 23:45:00 +08:00
hemanth.hm
d690268b43
Merge pull request #322 from andrewsomething/master
...
git-fresh-branch: Check for changes and prompt for input before nuking. (Issue: #142 )
2015-03-10 08:14:39 +05:30
Andrew Starr-Bochicchio
28df09b103
git-fresh-branch: Check for changes and prompt for input before nuking. (Issue: #142 )
2015-03-09 22:14:37 -04:00
hemanth.hm
14ef2a88ef
Merge pull request #308 from spacewander/git-utility
...
extra mktemp into git_extra_mktemp.
2015-03-08 23:37:20 +05:30
hemanth.hm
a48402153b
Merge pull request #312 from RichardLitt/feature/concat-extra-feature-names
...
Added in option to concat extra feature names.
2015-03-08 23:36:41 +05:30
hemanth.hm
475124ac6e
Merge pull request #320 from cironunes/gh-pages-fix
...
fix gh-pages to stash and don't delete files.
2015-03-03 18:12:02 +05:30
Ciro Nunes
c1b0067a97
fix gh-pages to stash and don't delete files
...
Closes #137
2015-03-03 09:04:20 -03:00
hemanth.hm
30ac2ae550
Merge pull request #319 from pfctgeorge/allow-empty-when-setup
...
Allow empty initial commit when setup repo.
2015-02-20 10:21:35 +05:30
Jianjin Fan
6df9673936
Allow empty initial commit when setup repo.
...
When hit `git setup` in an empty directory, it doesn't create a commit. But often we need an empty initial commit for future rebasing and reseting, etc. Fixes #318 .
2015-02-20 12:25:25 +08:00
hemanth.hm
722a4061ac
Merge pull request #317 from jykntr/master
...
git-summary correctly displays project name.
2015-02-19 21:12:48 +05:30
jykntr
bfeb897a6d
git-summary correctly displays project name
...
git-summary correctly displays project name when not executed in the top
level directory of a repository. Fixes tj/git-extras#302 .
Uses the git-sh-setup script to find top level directory and then uses
that directory name for the project name.
2015-02-18 17:09:39 -07:00
chernjie
2a9ce31d25
git scp #300
2015-02-16 12:02:03 +08:00
hemanth.hm
a618a56754
Merge pull request #316 from code42day/changelog-config
...
`changelog` config.
2015-02-16 09:23:21 +05:30
Damian Krzeminski
fabb2c5541
changelog: add git-config support for format and log options
...
(1) make format configurable
you can change the default changelog format by configuring
changelog.format git variable
for example:
git config changelog.format '- %s (%ae)'
gives you something like that:
- Merge pull request #298 from timfeirg/master (hemanth.hm@gmail.com )
- remove stuff from readme & form a list (kkcocogogo@gmail.com )
see git-log man for more examples
(2) make log options configurable
set `changelog.opts` to influence the way changelogs are generated
git config changelog.opts --no-merges
or:
git config changelog.opts --first-parent
fixes #285
also:
- delay calculating HEAD until needed
- remove extra line before header
2015-02-15 22:40:24 -05:00
hemanth.hm
f12e7ac27c
Merge pull request #315 from code42day/consistent-editor
...
use standard git editor in git-authors & git-changelog.
2015-02-14 16:41:04 +05:30
Damian Krzeminski
a86d850688
use standard git editor in git-authors & git-changelog
...
The editor used will be chosen from the GIT_EDITOR environment variable,
the core.editor configuration variable, the VISUAL environment variable,
or the EDITOR environment variable (in that order).
That ensures that `git-changelog` and `git-authors` will use the same editor
as `git-commit`, `git-merge` etc.
2015-02-13 17:51:22 -05:00
hemanth.hm
8750491323
Merge pull request #314 from snowyu/feature/custom-commit-message
...
added custom commit message option to `git-release`
2015-02-12 19:11:34 +05:30
Riceball LEE
48eb195ee0
+ custom commit message options supports
2015-02-12 17:55:31 +08:00
hemanth.hm
83b9348c91
Merge pull request #300 from chernjie/git-scp
...
git scp - Copy files to SSH compatible `git-remote`.
2015-02-11 13:47:01 +05:30
hemanth.hm
f20e260a9a
Merge pull request #313 from wooorm/bug/fix-missing-closing-brace
...
Fix missing closing curly brance in `bash_completion.sh`.
2015-02-11 13:46:00 +05:30
wooorm
a58ee0a4e9
Fix missing closing curly brance in bash_completion.sh
...
- Introduced in b0a6d04f9ff303a9864070eda45c7309e3789ad4;
- Comments: https://github.com/tj/git-extras/commit/
b0a6d04f9ff303a9864070eda45c7309e3789ad4#commitcomment-9687275.
2015-02-11 08:53:12 +01:00
Richard Littauer
b1a790b851
Added in option to concat extra feature names
...
This takes any extra arguments supplied to `$git feature` and sets
them as the new feature name. For instances, instead of throwing an
error if `$git feature new thing` is called, it will create branch
`feature/new-thing`.
2015-02-10 16:02:39 -08:00
Ivan Malopinsky
fc89e17a3c
link to git delta
2015-02-10 00:03:09 -05:00
Ivan Malopinsky
30d2f07360
git delta usage
2015-02-09 23:54:54 -05:00
hemanth.hm
ced7ec0c97
Merge pull request #310 from imsky/git-delta
...
Added `git-delta`.
2015-02-10 09:45:54 +05:30
Ivan Malopinsky
e7b371b355
git-delta
2015-02-09 21:09:11 -05:00
Titus Wormer
0fd45396ce
Add git-authors
2015-02-08 10:59:36 +01:00
hemanth.hm
d4e40101f7
Merge pull request #309 from wooorm/feature/add-git-authors
...
Added `git-authors`.
2015-02-08 12:10:18 +05:30
wooorm
b0a6d04f9f
Add git-authors
2015-02-07 17:24:21 +01:00
Chris Hall
cb2aa2792f
Updated Commands (markdown)
2015-02-06 15:50:25 -05:00
Chris Hall
ee543f184a
Updated Commands (markdown)
2015-02-06 15:49:26 -05:00
Chris Hall
50650ec314
Updated Commands (markdown)
2015-02-06 15:48:40 -05:00
Chris Hall
104e953dd3
Updated Commands (markdown)
2015-02-06 15:48:20 -05:00
Chris Hall
dae7399f7e
Updated Commands (markdown)
2015-02-06 15:47:49 -05:00
CJ
0325c46a43
tj#300 Added bash completion
2015-02-05 18:23:37 +08:00
spacewander
32aee50bc6
extra mktemp into git_extra_mktemp
...
now we can put all utility functions to git-extra-utility
2015-02-05 14:22:49 +08:00
hemanth.hm
c50f096ee3
Merge pull request #307 from ckhall/feature/add_git_chore_workflow
...
adding git-chore.
2015-02-05 11:21:15 +05:30
Chris Hall
a36b7f4934
adding git-chore
2015-02-04 11:52:23 -05:00
hemanth.hm
4d07797b40
Merge pull request #306 from spacewander/master
...
add enough X to fix #303 .
2015-02-02 20:05:39 +05:30
spacewander
e1cedf7fd2
add enough X to fix #303 .
...
GNU mktemp requires at least three X in the last part of template.
2015-02-02 21:35:44 +08:00
hemanth.hm
c5c542da6c
Merge pull request #304 from wooorm/git-ignore-typo
...
Fix typo in in `git ignore` message.
2015-01-23 18:27:36 +05:30
wooorm
1199186652
Fix typo in in git ignore message
2015-01-23 11:58:38 +01:00
CJ
195fb17458
symlink git-rscp to git-scp
2015-01-19 12:27:56 +08:00
hemanth.hm
e738f760ae
Avoid duplicating asterisk.
...
Closes https://github.com/tj/git-extras/pull/218
2015-01-18 22:10:39 +05:30
hemanth.hm
a695f36f0b
Updated License.
...
2015!
2015-01-01 00:07:00 +05:30
neydroid
b99a6a0fed
Fix link to git feature command
2014-12-28 13:48:35 -08:00
CJ
42fa7ceaac
path argument can not be optional in rscp; add more docs
2014-12-29 00:14:44 +11:00
CJ
158266684d
OMG a spelling mistake\!
2014-12-28 23:53:49 +11:00
hemanth.hm
13326b89e5
Merge pull request #301 from raeffs/master
...
updated documentation for git-squash.
2014-12-28 08:19:29 +05:30
Raphael Fleischlin
bc17c1cb2e
updated documentation because git-squash does no longer delete source-branch
2014-12-27 20:45:28 +01:00
CJ
909072ad54
Updated man page for git-scp
2014-12-18 15:45:35 +08:00
CJ
8259a0dcb4
First RFC documentation
2014-12-18 15:14:52 +08:00
hemanth.hm
182d17cd33
Merge pull request #299 from jonanp/git-delete-branch
...
Handle different remotes.
2014-12-17 17:49:02 +05:30
Jon Ander Peñalba
bfd38ca891
When deleting a branch check if git has config.
...
Don't assume that the remote is always origin and that the
remote branch name is the same as the local one
2014-12-17 11:33:09 +01:00
hemanth
af404cf6ae
Added a footer.
2014-12-16 20:11:06 -08:00
hemanth.hm
ce26630596
Merge pull request #298 from timfeirg/master
...
readme moved to wiki.
2014-12-17 09:37:56 +05:30
timfeirg
dab6179163
remove stuff from readme & form a list
2014-12-17 11:32:47 +08:00
timfeirg
f8a6252339
add a few keywords
2014-12-16 19:13:52 -08:00
timfeirg
e300ddfdcc
some remaining dashes
2014-12-16 07:51:42 -08:00
timfeirg
0f5985889b
roughly finished
2014-12-16 07:39:26 -08:00
timfeirg
48f85b4039
Updated Commands (markdown)
2014-12-16 07:17:47 -08:00
timfeirg
b46740bd33
Updated Commands (markdown)
2014-12-16 07:17:15 -08:00
timfeirg
67d48c7682
Updated Commands (markdown)
2014-12-16 07:16:59 -08:00
timfeirg
8585e0060d
gonna use the clean sub command for each command explanation
2014-12-16 07:16:19 -08:00
timfeirg
fdca066f90
adding links turn out to be a pain, go to sleep
2014-12-16 07:09:25 -08:00
timfeirg
866416b65e
add commands page link
2014-12-16 07:07:13 -08:00
timfeirg
fe618642eb
add commands page, all copy & paste
2014-12-16 07:06:38 -08:00
timfeirg
15be9bb5ea
add screencasts
2014-12-16 06:56:31 -08:00
timfeirg
1b514d3cbc
copy from readme
2014-12-16 06:53:25 -08:00
timfeirg
77502c7908
Updated Install (markdown)
2014-12-16 06:50:40 -08:00
timfeirg
fc08a9a165
Created Install (markdown)
2014-12-16 06:50:27 -08:00
CJ
73d5209743
adapted a more generic, customizable and friendly script
2014-12-16 21:26:18 +08:00
CJ
399073af7b
Copy from git-goth https://github.com/chernjie/git-goth
2014-12-16 20:12:06 +08:00
timfeirg
93d58ec74a
Initial Home page
2014-12-16 03:16:46 -08:00
hemanth.hm
1b2b61169a
Merge pull request #296 from spacewander/add-completion
...
More bash completion functions.
2014-12-15 08:36:16 +05:30
spacewander
2f5a6c1399
add more bash completion functions
2014-12-14 17:17:01 +08:00
hemanth.hm
fb573b2c4d
Merge pull request #294 from GuillaumeSeren/feature/git-missing-add-ref-completion
...
Add ref completion to git-missing.
2014-12-12 23:27:58 +05:30
Guillaume Seren
903512c02b
Add ref completion to git-missing.
...
I find useful to get the ref completion in the git-missing command,
the behavior is the *like* the one on 'git log --pretty' it use the
'git for-each-ref' command to provide shortname of :
* All local branches.
* All remote/branches.
* All tags.
* The stash.
The output can be a bit huge, but provide a standard git / bash completion.
2014-12-12 18:52:07 +01:00
hemanth.hm
a4c04f2c2b
Merge pull request #293 from tj/revert-291-ignore-man-generated-files
...
Revert "Ignore *.html and *.1 auto-generated files in man/"
2014-12-12 17:34:56 +05:30
hemanth.hm
033ca547d5
Revert "Ignore *.html and *.1 auto-generated files in man/"
2014-12-12 17:34:41 +05:30
hemanth.hm
b1614182fe
Merge pull request #292 from RasmusWL/make-handle-missing-man
...
make will not assume man pages already exists.
2014-12-12 10:52:51 +05:30
Rasmus Wriedt Larsen
fe3a781de0
make will not assume man pages already exists
...
They where removed from the repo by issue #291
2014-12-11 21:14:12 +01:00
hemanth.hm
b1edc30cb4
Merge pull request #291 from jguenther/ignore-man-generated-files
...
Ignore *.html and *.1 auto-generated files in man/
2014-12-11 08:37:29 +05:30
Justin Guenther
70fd146eb1
Ignore man/git-*.html and man/git-*.1
2014-12-10 18:55:18 -06:00
Justin Guenther
eb63d0bb1a
Remove auto-generated files man/git-*.html and man/git-*.1
2014-12-10 18:54:40 -06:00
hemanth.hm
081e14f88f
Merge pull request #226 from tsldh/master
...
Added changelog -c flag to git-release.
2014-12-07 10:49:24 +05:30
David Hartmann
292586d96f
added changelog to release as optional flag
...
- rewrote the flags to contain multiple
- added -c as changelog option
2014-12-06 14:43:34 -05:00
hemanth.hm
5596354446
Merge pull request #289 from mavant/feature/mktemp
...
Use mktemp for temporary files.
2014-12-05 09:17:03 +05:30
Matthew Avant
7701ba4069
Use mktemp for temporary file creation.
2014-12-04 11:01:40 -08:00
hemanth.hm
ec83f827b1
Merge pull request #288 from dead-horse/release-hook
...
made release hook more flexible.
2014-12-03 08:03:03 +05:30
dead-horse
9a9be49b63
make release hook more flexible
2014-12-03 00:57:41 +08:00
hemanth.hm
fc726204e3
Merge pull request #287 from benjaminparnell/master
...
added --no-color to git-delete-merged-branches.
2014-12-01 15:55:43 +05:30
Ben Parnell
0b0b688c17
added --no-color to git-delete-merged-branches
2014-12-01 10:20:26 +00:00
hemanth.hm
7b7913fab1
More portable she-bangs.
2014-11-30 17:47:26 +05:30
hemanth.hm
e7e6c96f3e
Merge pull request #283 from e28eta/patch-1
...
Process-specific tmp file and clean up on exit.
2014-11-27 10:02:56 +05:30
Dan Jackson
d7d6ff2fed
Use process-specific tmp file and clean up on exit
...
Fixes #279 using the suggestion from @hemanth, with some minor tweaks:
- I kept the leading . because I figured there was a reason it was put there originally.
- Changed the show_cursor method that's called when the process exits (prematurely or naturally) to be show_cursor_and_cleanup, and added a line to it that cleans up the tmp file.
2014-11-26 10:23:54 -08:00
hemanth.hm
3770264901
Merge pull request #281 from emilkje/patch-1
...
Original repo remote is named 'upstream'.
2014-11-26 20:32:07 +05:30
hemanth.hm
48b4855502
Merge pull request #280 from valeriangalliat/feature/git-info-posix
...
git-info: POSIX compliance.
2014-11-26 20:30:22 +05:30
Emil Kjelsrud
f51c38357f
Update Readme.md
...
Original repo remote is named 'upstream' and not 'original' as Readme suggests.
2014-11-26 14:12:28 +01:00
Valérian Galliat
5ee706b585
git-info: POSIX compliance
...
Replace `echo -n` (non-POSIX) with an helper function `echon` echoing a
newline after given expression.
2014-11-26 14:02:29 +01:00
hemanth.hm
e5585bd846
Merge pull request #278 from tj/delete-submodule-fix
...
Fixes #277 .
2014-11-21 00:35:04 +05:30
hemanth.hm
53e4f3c89d
Fixes #277
2014-11-21 00:31:43 +05:30
hemanth.hm
e7990ed810
Merge pull request #276 from spacewander/master
...
git-ignore will cd root to find .gitignore.
2014-11-21 00:27:09 +05:30
Hemanth.HM
cb0e56639c
Version bump.
2014-11-18 21:37:03 +05:30
Hemanth.HM
421441aba1
Updated the list.
2014-11-18 21:34:21 +05:30
Hemanth.HM
52d0344269
Version 2.2.0
2014-11-18 21:33:20 +05:30
hemanth.hm
e807967655
Merge pull request #275 from spacewander/master
...
Update `mktemp` command to work on Mac OS X.
2014-11-18 21:07:16 +05:30
spacewander
0374044790
modify the behavior of git-ignore, now it will cd root to find .gitignore
2014-11-17 21:36:56 +08:00
spacewander
67241a46a8
Update mktemp command to work on Mac OS X
...
Fix issue 274. It seens like the same with
[this issue](https://github.com/StanAngeloff/lotte/issues/1 ).
2014-11-13 22:13:13 +08:00
hemanth.hm
9074608bd8
Merge pull request #273 from spacewander/master
...
'git root' shows the path to root of repo.
2014-11-13 17:57:13 +05:30
spacewander
92c34e8e00
add new command 'git root' to show the path to root of repo
2014-11-13 16:12:50 +08:00
hemanth.hm
1748fb29c5
Merge pull request #271 from bohnman/git-rename-tag-fix
...
tag to tags
2014-11-08 11:14:59 +05:30
hemanth.hm
89e728f78a
Merge pull request #272 from spacewander/master
...
replace visionmedia/git-extras to tj/git-extras
2014-11-08 11:12:52 +05:30
spacewander
f0e0322923
correct the format of git-rebase-patch.md. Now we can handle it with script
...
Also regeneralize all markdown documents.
2014-11-06 21:35:17 +08:00
spacewander
0a3bc99d9a
correct the '-m' argument for grep. Then regenralize git-extra
...
'-m' option is supported both in GNU grep and in BSD grep
GNU grep: <http://linux.die.net/man/1/grep >
BSD grep:
<https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/grep.1.html >
2014-11-06 21:33:14 +08:00
spacewander
76e0dfef97
replace visionmedia/git-extras to tj/git-extras
...
Although Github reserves the 'visionmedia' user space(a visit to there
will be redirected to 'tj'), it's better to
rename the links from visionmedia/git-extras to tj/git-extras
2014-11-06 17:12:01 +08:00
Ryan Bohn
53efa98c15
changing incorrect reference of tag to tags
2014-11-05 15:29:48 -05:00
hemanth.hm
2f59bdfe91
Merge pull request #270 from kevinawoo/hotfix/git-locked
...
git-locked
2014-10-17 07:31:35 +05:30
Kevin Woo
6d7f10c0c6
added git-locked to check what files have been locked
2014-10-16 20:53:47 -05:00
hemanth.hm
55c8ad0141
Merge pull request #268 from GuillaumeSeren/bug/git-missing
...
Fix #267 , git-missing did not catch branch name.
2014-10-15 08:02:04 +05:30
Guillaume Seren
db0f610bc1
Fix #267 , git-missing did not catch branch name.
...
It was a bug on my setup, the test did no detect the
branch name, so I change:
if [[ $arg != -* ]]; then
by
if [ -n "${arg}" ]; then
According to test man page, -n:
«True if the length of string is non-zero.»
I also added quote and {} around the param,
to prevent bash expension around strange char.
2014-10-14 16:24:18 +02:00
hemanth.hm
3c7d4e67f4
Version 2.1.0
2014-10-13 17:51:54 +05:30
hemanth.hm
e294617d10
Fixes #266
2014-10-13 17:49:34 +05:30
hemanth.hm
27554380d3
Merge pull request #264 from jamesmanning/patch-1
...
Fixed descriptions: match required/optional params.
2014-10-08 08:17:30 +05:30
James Manning
13d4803056
fixed descriptions: match required/optional params
2014-10-07 10:43:05 -04:00
hemanth.hm
daf0c0c048
Merge pull request #263 from Yitsushi/bug/180-does-not-check-out-branch-if-it-already-exists
...
fix #180 and #232 feature|bug|refactor checkout.
2014-10-07 17:27:55 +05:30
Balazs Nadasdi
b9478d64b7
fix #180 and #232 feature|bug|refactor checkout
...
If branch creation in feature|bug|refactor returns a non-zero value
then simply try to switch to branch
2014-10-07 10:57:00 +02:00
hemanth.hm
b6968afd5d
Merge pull request #262 from rstacruz/gh-259-git-pr
...
git-pr
2014-10-07 14:05:26 +05:30
Rico Sta. Cruz
ab67327ec0
Implement git-pr
2014-10-07 13:13:19 +08:00
hemanth.hm
53470fa7ad
Merge pull request #261 from sanusart/master
...
FIX: representation of git-info.
2014-10-07 09:56:31 +05:30
Sasha Khamkov
ccf029dabe
FIX: representation of git-info
...
- fix representation of `git-info` output
$ git info --no-config
Before:
## Remote URLs:\n
origin https://github.com/sanusart/git-extras.git (fetch)
origin https://github.com/sanusart/git-extras.git (push)
upstream https://github.com/visionmedia/git-extras.git (fetch)
upstream https://github.com/visionmedia/git-extras.git (push)\n
## Remote Branches:\n
origin/HEAD -> origin/master
origin/fix_feature_refactor_bug
origin/gh-pages
origin/issue234
origin/master
origin/patch-1
upstream/gh-pages
upstream/master\n
## Local Branches:\n
* master\n
## Most Recent Commit:\n
commit ac18bd16b4
Merge: 68455cf a1b7120
Author: hemanth.hm <hemanth.hm@gmail.com>
Merge pull request #260 from brandondrew/patch-1\n
Type 'git log' for more commits, or 'git show <commit id>' for full commit details.\n
After:
git info --no-config
## Remote URLs:
origin https://github.com/sanusart/git-extras.git (fetch)
origin https://github.com/sanusart/git-extras.git (push)
upstream https://github.com/visionmedia/git-extras.git (fetch)
upstream https://github.com/visionmedia/git-extras.git (push)
## Remote Branches:
origin/HEAD -> origin/master
origin/fix_feature_refactor_bug
origin/gh-pages
origin/issue234
origin/master
origin/patch-1
upstream/gh-pages
upstream/master
## Local Branches:
* master
## Most Recent Commit:
commit ac18bd16b4
Merge: 68455cf a1b7120
Author: hemanth.hm <hemanth.hm@gmail.com>
Merge pull request #260 from brandondrew/patch-1
Type 'git log' for more commits, or 'git show <commit id>' for full commit details.
2014-10-06 21:59:53 +03:00
hemanth.hm
ac18bd16b4
Merge pull request #260 from brandondrew/patch-1
...
typo fix.
2014-10-04 15:06:30 +05:30
Brandon Zylstra
a1b71202e7
import changes *from* a branch
2014-10-03 20:51:50 -04:00
hemanth.hm
68455cf996
Merge pull request #258 from spacewander/master
...
use mixin to add 'is git repo' check.
2014-09-25 08:07:13 +05:30
spacewander
d9724f3b46
use mixin to add 'is git repo' check for some commands
...
When those commands are used outside a git repo, 'Not a git repo!' will be
printed to stderr
2014-09-25 00:41:43 +08:00
hemanth.hm
4cd35e8737
Merge pull request #255 from sanusart/master
...
Bump version in `bin/git-extras`.
2014-09-21 14:48:20 +05:30
Sasha Khamkov
293119cf6c
Bump version in bin/git-extras
...
- Bump version to 2.0.0 in `bin/git-extras` to enable updating package
via `git-extras update`
2014-09-21 09:55:56 +03:00
hemanth.hm
32d034abd5
Changelogs for version 2.0.0
2014-09-20 18:21:16 +05:30
hemanth.hm
5d06124a9c
Merge pull request #254 from spacewander/master
...
add welcome in git-repl.
2014-09-14 18:19:41 +05:30
spacewander
5f35004d08
add welcome in git-repl
2014-09-13 20:56:36 +08:00
hemanth.hm
48c8fd783e
Merge pull request #253 from tailored-tunes/master
...
Added option to specify base.
2014-09-11 18:04:20 +05:30
meza
be5362b025
Added option to specify base
2014-09-11 13:10:01 +01:00
hemanth.hm
526c4f6664
Merge pull request #252 from sorbits/patch-1
...
Update homebrew URL and removed ‘buggy’ label.
2014-08-29 13:33:35 +05:30
Allan Odgaard
f0e3a84822
Update homebrew URL and remove ‘buggy’ label
...
The ‘buggy’ label was added almost four years ago (bf25069fab ) without clarification, so we assume it was motivated by issues that have long since been fixed.
2014-08-29 09:42:04 +02:00
hemanth.hm
0127a0bd1c
Merge pull request #250 from sanusart/master
...
git-reset-file
2014-08-27 18:15:10 +05:30
Sasha Khamkov
b94fdd11c2
ADD: git-reset-file
...
Reset single file to HEAD or certain commit-hash
- add git-reset-file
- add respective man files
2014-08-27 10:42:58 +03:00
hemanth.hm
aa5457c14c
Merge pull request #248 from rstacruz/patch-1
...
Readme: document `git-delete-merged-branches`
2014-08-14 19:19:52 +05:30
Rico Sta. Cruz
e422f5ecbe
Readme: document git-delete-merged-branches
2014-08-13 12:55:34 +08:00
hemanth.hm
9bbeb99177
Merge pull request #247 from visionmedia/perm_fix
...
File perms fix.
2014-07-30 17:58:30 +05:30
hemanth.hm
8127f10640
File perms fix.
2014-07-30 17:57:47 +05:30
hemanth.hm
9bc92e65c2
Merge pull request #242 from sanusart/fix_feature_refactor_bug
...
Fix feature|refactor|bug testing argument for string length.
2014-07-25 08:39:48 +05:30
hemanth.hm
39945ab856
Merge pull request #244 from toksea/patch-1
...
Fix wrong git-info heading level in Readme.md
2014-07-25 08:36:03 +05:30
hemanth.hm
9fd861f775
Merge pull request #243 from sanusart/issue234
...
Revert 2 commits to `git-changelog`
2014-07-25 08:35:07 +05:30
Xiaopei Li
c62563bc96
Fix wrong git-info heading level in Readme.md
...
Fixed wrong git-info heading level: h1 -> h2
2014-07-25 09:33:52 +08:00
Sasha Khamkov
ba481f35c2
Revert 2 commits to git-changelog
...
- Revert "FIX: check if un-pushed commits". This reverts commit bd80a4e512 .
- Revert "Add check for no changes in the tree (no sub-modules)". This reverts commit f2a41c54b1 .
Resolves #234
2014-07-24 20:57:07 +03:00
Sasha Khamkov
3d8db9dbb9
Fix feature|refactor|bug testing argument for string lenght
...
93d92ae338 (diff-dde525a12e9f5e19)
Seems only works while $2 is quoted, e.g. "$2"
Closes #241
2014-07-24 10:28:51 +03:00
hemanth.hm
ee1a4f176a
Merge pull request #240 from egrim/bug/delete-merged-branches-clobbers-master
...
Exempt `master` from being deleted by `git-delete-merged-branches`.
2014-07-22 12:02:29 +05:30
Evan Grim
fb779658e3
Update docs to match git-delete-merged-branches behavior
2014-07-21 23:20:34 -05:00
Evan Grim
36596a33b3
Exempt master from deleted branches
...
This is helpful for those who use the `git-flow` branch model and might
be surprised to find that this script deletes their master branch.
2014-07-21 23:05:30 -05:00
hemanth.hm
1f8971bdbf
Merge pull request #239 from bruno-/refactor_git_squash
...
Refactor and improve `git squash`.
2014-07-21 08:09:37 +05:30
Bruno Sutic
b2576adae0
Refactor and improve git squash
...
`git squash` refactor:
- first argument can be a branch or a commit reference
- the `--me` argument is not required anymore
- use `git reset --soft` is squashing on a current branch
- if squashing on master branch, prompt for confirmation
- does not delete provided branch after squashing
- fix bug: if `git merge --squash` command fails, exit script
Update README and man pages.
Fixes #95
Closes #198
2014-07-20 17:33:15 +02:00
hemanth.hm
458c08d96b
Merge pull request #238 from techjacker/feature/git-fork
...
git-fork!
2014-07-15 20:33:27 +05:30
Andy
2024744f2b
add git-fork
...
update git-fork to add remotes refs as ssh
change fork source remote name to upstream
add man page for git-fork
2014-07-15 10:11:44 +01:00
hemanth.hm
95b7c52812
Merge pull request #236 from jbnicolai/align-authors-git-summary
...
Uses column -t to align summary output in a table.
2014-07-14 20:28:13 +05:30
Joshua Appelman
04c43430aa
Uses column -t to align summary output in a table.
2014-07-14 16:49:48 +02:00
hemanth.hm
be12410e31
Merge pull request #221 from zlx/feature/git-summary-doc
...
Make line-summary as sub-command.
2014-07-14 20:01:20 +05:30
hemanth.hm
04d9deceb2
Merge pull request #224 from StewartJarod/patch-1
...
Letter spacing in author list.
2014-07-14 19:53:52 +05:30
hemanth.hm
bbcaf7c324
Merge pull request #189 from rhacker/patch-1
...
Add comment for the code.
2014-07-13 20:57:28 +05:30
hemanth.hm
42c63ac3f2
Merge pull request #235 from sanusart/patch-1
...
FIX (git-changelog): check if un-pushed commits.
2014-07-12 08:50:59 +05:30
Sasha Khamkov
bd80a4e512
FIX: check if un-pushed commits
...
- switch the check for un-pushed commits from `diff-index` to more simple check
- still ignores sub-modules
Closes #234
Clarification:
As pointed by @cristiandouce in #234 - my flow was different (and pretty stupid to be honest on some particular project of mine) so some other work flow scenarios was failing to pass.
I still feel such check is needed, because it is still populates Changelog|History files with empty lines if no un-pushed commits exist, so @hemanth merge this one or revert the [619232e ](619232ef86 )
2014-07-11 23:43:12 +03:00
hemanth.hm
390ba55211
Merge pull request #202 from julionc/protecting-files
...
Locking files in git repository.
2014-07-11 21:26:34 +05:30
Julio Napurí
b298c0cba4
Update Readme.md with lock and unlock commands
2014-07-10 11:30:06 -05:00
Julio Napurí
08cdb7effb
git-unlock Unlock local files in git repository
2014-07-10 11:27:58 -05:00
Julio Napurí
732ec9638f
git-lock Lock files in git repository
2014-07-10 11:27:57 -05:00
hemanth.hm
d2029c6efb
Merge pull request #100 from niklasf/rebase-patch
...
Added git-rebase-patch.
2014-07-10 15:37:20 +05:30
Niklas Fiekas
3bd1b84759
Add git-rebase-patch
2014-07-10 09:54:17 +02:00
hemanth.hm
8df35250c6
Merge pull request #200 from emkay/patch-1
...
Readme cleanup.
2014-07-09 11:22:22 +05:30
hemanth.hm
a9bad79e98
Merge pull request #195 from carlcasbolt/patch-1
...
Updated readme of man pages.
2014-07-09 11:18:03 +05:30
hemanth.hm
b200552c90
Merge pull request #181 from zeroDivisible/feature/handle-misspellings
...
git bug|feature|refactor accepts a single argument if not finishing.
2014-07-09 11:13:02 +05:30
hemanth.hm
74acf8cab4
Merge pull request #193 from pzelnip/git-setup-no-overwrite
...
`git-setup` checks for an existing .git in target dir.
2014-07-09 11:01:42 +05:30
hemanth.hm
128bc2d5f8
Merge pull request #183 from chernjie/master
...
`git-create-branch`: use HEAD instead of origin.
2014-07-09 10:58:10 +05:30
hemanth.hm
619232ef86
Merge pull request #220 from sanusart/master
...
Add check for no changes in the tree (no sub-modules)
2014-07-09 10:56:25 +05:30
hemanth.hm
1a6cbf2433
Merge pull request #63 from justone/git_missing
...
Adding `git-missing` command.
2014-07-09 10:48:17 +05:30
hemanth.hm
b328920fe5
Merge pull request #173 from accerqueira/master
...
Uninstall targets and BINPREFIX for makefile.
2014-07-08 09:09:00 +05:30
hemanth.hm
a0e614e6ff
Merge pull request #194 from makeusabrew/patch-1
...
Fix git-squash typo.
2014-07-08 08:55:58 +05:30
hemanth.hm
0353b63e63
Merge pull request #216 from stephenmathieson/fix/changelog-large-versions
...
Changelog formatting for large version numbers.
2014-07-08 08:54:40 +05:30
hemanth.hm
ab5c0364f6
Merge pull request #188 from twolfson/dev/add.multi.delete.squashed
...
Added multi-delete for git-delete-branch and git-delete-tag.
2014-07-07 18:04:11 +05:30
hemanth.hm
3b3efd7483
Merge pull request #219 from jhoffmann/patch-1
...
Update Readme.md
2014-07-06 12:37:41 +05:30
hemanth.hm
47bb6e0f74
Merge pull request #222 from jsipprell/pull/filenames-containing-spaces
...
git-effort handles filenames with whitespace.
2014-07-06 12:36:08 +05:30
hemanth.hm
039bb5c318
Merge pull request #223 from mwoc/master
...
Restoring debian changelog compatibility.
2014-07-06 12:34:21 +05:30
hemanth.hm
a87403b57f
Merge pull request #229 from yggdr/master
...
/usr/bin/env for portability.
2014-07-06 11:55:00 +05:30
hemanth.hm
45b3515ff8
Merge pull request #231 from petersohn/master
...
git-obliterate now supports whitespaces in filename.
2014-07-06 11:52:58 +05:30
eszabpt
698d027a0a
Make git-obliterate work if there are whitespaces in filename
2014-07-04 11:16:17 +02:00
Konstantin Schukraft
e4290dfb32
invoke bash via /usr/bin/env for portability
2014-07-02 09:41:37 +02:00
TJ Holowaychuk
d437418b3c
Release 1.9.1
2014-06-21 21:54:12 -07:00
TJ Holowaychuk
ef00c0c2c6
Merge pull request #225 from pmalek/master
...
Fixed git-changelog errors on first usage
2014-06-21 21:53:16 -07:00
Andre Cerqueira
ad045b7777
improved Makefile with BINPREFIX
2014-06-17 22:43:18 -03:00
Andre Cerqueira
04076cd5df
fixed Makefile uninstall target for man files
2014-06-17 22:43:18 -03:00
Patryk Małek
4145f228e4
Fixed git-changelog errors when multiple files match change|history
2014-06-16 16:32:47 +02:00
Patryk Małek
de6463fbee
Fixed git-changelog errors on first usage
2014-06-16 16:27:57 +02:00
Jarod Stewart
374df5cabf
Letter spacing in author list
...
This is a quick fix for the letter spacing for the author list.
2014-05-07 22:58:41 -06:00
Maarten Winter
0687de734c
Use two-space indents for log entry output, so it again is debian changelog compatible (as before commit 1235e4a5)
2014-04-29 10:51:30 +02:00
Jesse Sipprell
1479b9633a
git effort: handle filenames containing whitespace cleanly
2014-04-22 20:21:10 -04:00
soffolk
a4cf7462f0
Add line-summary as an options --line & doc
2014-04-22 21:50:22 +08:00
Sasha Khamkov
f2a41c54b1
Add check for no changes in the tree (no sub-modules)
2014-04-06 00:10:08 +03:00
John Hoffmann
3c6a0844b2
Update Readme.md
...
Removed the bit about `git-ignore -t` as this was removed by b7222ed2 .
2014-03-31 12:47:09 -04:00
Stephen Mathieson
fde9d1cd30
Fix changelog formatting for large version numbers
...
This allows for version numbers which require more than 18 characters to
be underlined and pretty. :)
2014-02-24 11:45:42 -05:00
TJ Holowaychuk
e91da7c2b4
Merge pull request #159 from code42day/no-merges-changelog
...
Add --no-merges option to git-changelog
2013-12-01 15:54:50 -08:00
Damian Krzeminski
e777095a9f
Update git-changelog docs for --no-merges option
2013-12-01 18:18:03 -05:00
Damian Krzeminski
31bbed4ac8
Add --no-merges option to changelog
...
--no-merges allows for generating changelog without information about
merge commits
2013-12-01 18:18:03 -05:00
TJ Holowaychuk
0faaec7ce9
Merge pull request #199 from tlvince/refactor/git-delete-merged-branches
...
Simplify delete-merged-branches
2013-11-19 08:43:14 -08:00
TJ Holowaychuk
9760f523ce
Merge pull request #201 from TooTallNate/patch-1
...
git-changelog: don't output a trailing space after the date
2013-11-19 08:41:54 -08:00
Nathan Rajlich
519f678938
git-changelog: don't output a trailing space after the date
...
This has been driving me and others crazy for forever.
/cc @guille @MatthewMueller
2013-11-18 16:13:55 -08:00
Michael Matuzak
a781c8498f
removing git promote
...
I don't see a `git promote` command, so I am removing it from the Readme.
2013-11-12 18:24:10 -08:00
Tom Vincent
a909c8d20f
Simplify delete-merged-branches
...
This will delete branches merged into the current branch.
This uses `-d` and is therefore safer than the current script (which uses `-D`).
IMO, this mitigates the need to prompt.
2013-10-24 12:06:24 +01:00
Carl Casbolt
82466d2a52
Update Readme.md
...
Cleaned up the READ file formatting a little after reading it to help the next person that is thinking of adding more documentation.
2013-10-04 10:33:29 +01:00
Nick Payne
6faf7513dd
Fix git-squash typo
2013-10-04 09:31:44 +01:00
Adam Parkin
2b6e35d5eb
Address issue #190 , git-setup should test for existing .git in target directory
...
- now exits with an error message if the target directory already has a .git directory
2013-10-01 13:26:55 -07:00
Dung Quang
62c8243ac5
Add comment for the code
...
I think it's better that we have description in the file.
2013-09-24 09:33:46 +02:00
Todd Wolfson
9b787421e7
Added multi-delete for git-delete-branch and git-delete-tag
...
Correcting typos
Compiled latest documentation
Applying changes from delete-tag to delete-branch for consistency
Removed unnecessary string quotes (thanks `git` ref design) and everything works
Tags are not being found with string concatenation
Updated delete-tag to accept multiple tags
Corrections for delete-branch
Updating docs for delete-tag
Added 'Todd Wolfson' to AUTHORS
Updated documentation for delete-branch
Moved deletions to concatenate strings and delete in one fell swoop
Reworking delete-branch to delete multiple branches in series
2013-09-15 14:40:35 -07:00
TJ Holowaychuk
a55cc84a11
Merge pull request #185 from mo-gr/master
...
Small typo correction
2013-08-18 12:26:23 -07:00
Moritz Grauel
5708c4f359
Small typo correction
...
There was a small typo in the git-ignore man-page that is fixed by this commit
2013-08-15 12:31:22 +02:00
CJ
e3320e2671
git-create-branch: bug fix for branch creation use HEAD instead of origin
2013-07-21 12:13:37 +08:00
zeroDivisible
93d92ae338
changed the code for git bug|feature|refactor to only accept single argument when not finishing a bug|feature|refactor. This is an easy solution to avoid misspelings of the word 'finish'
2013-07-18 14:33:41 +01:00
Nate Jones
e5c8d79e66
allow options to be passed through to git log
2013-07-05 15:31:46 -07:00
Nate Jones
63d707c33c
adding git-missing command
2013-07-05 15:31:46 -07:00
TJ Holowaychuk
c45e2b8f5f
Release 1.9.0
2013-06-18 13:45:24 -07:00
TJ Holowaychuk
c136afba67
git-squash: add --me flag to flatten the current branch
2013-06-18 13:44:55 -07:00
Aurélien Scoubeau
ed24416bf7
Make repository_age() "history rewrite safe"
...
Change commit date to author date, so that the repo age doesn't change if history rewriting tools (such as amend, rebase, filter-branch) are used.
2013-06-17 12:56:39 +02:00
TJ Holowaychuk
13117264c3
Merge pull request #172 from zlx/feature/git-line-summary
...
add git-line-summary
2013-05-20 19:00:21 -07:00
soffolk
dbc9fe0be4
modify to count for text file
2013-05-18 17:45:17 +08:00
soffolk
0386eb5bbe
add git-line-summary
2013-05-18 16:02:02 +08:00
TJ Holowaychuk
84855b803d
Release 1.8.0
2013-05-15 10:10:30 -07:00
TJ Holowaychuk
12b864e752
move docs target up
2013-05-15 10:02:38 -07:00
TJ Holowaychuk
9800b326e5
Merge branch 'master' of github.com:visionmedia/git-extras
2013-05-15 10:01:28 -07:00
TJ Holowaychuk
111f04bb57
Merge pull request #102 from Phally/tag-in-command-line
...
Entering the tag name in the command line with git-changelog
2013-05-15 10:01:22 -07:00
TJ Holowaychuk
a03bb363dd
Merge branch 'master' of github.com:visionmedia/git-extras
2013-05-15 09:59:36 -07:00
TJ Holowaychuk
82cdab83f5
Merge pull request #165 from TheHippo/git-archive-file
...
Git archive file
2013-05-15 09:59:29 -07:00
TJ Holowaychuk
dc52254843
Merge branch 'master' of github.com:visionmedia/git-extras
2013-05-15 09:57:57 -07:00
TJ Holowaychuk
7d2f933945
Merge pull request #168 from js-coder/master
...
git-repl improvements
2013-05-15 09:57:50 -07:00
TJ Holowaychuk
fe584f631d
Merge pull request #169 from jgallen23/bug/index-lock
...
removed unnecessary git checkout for bug, feature and refactor
2013-05-15 09:56:51 -07:00
TJ Holowaychuk
46175a69b9
Merge branch 'master' of github.com:visionmedia/git-extras
2013-03-25 08:24:07 -07:00
TJ Holowaychuk
f6bb7ba042
git-delete-merged-branches: use -D instead of delete-branch
...
too slow
2013-03-25 08:23:57 -07:00
Greg Allen
a79c51c7ad
removed unnecessary git checkout for bug, feature and refactor
2013-03-07 17:44:11 -08:00
Phally
d3ad5d75c8
Adds the tag swtich to bash completion.
2013-03-03 19:30:21 +01:00
Phally
0295063981
Updated readme; included the --tag switch.
2013-03-03 16:46:32 +01:00
Phally
4f55198dca
Added support for a --tag argument to directly set the tag name in the header.
2013-03-03 16:46:32 +01:00
Phally
1235e4a5ad
Added support for multiple arguments in git-changelog.
2013-03-03 16:46:32 +01:00
Florian H
ae5b596117
Execute commands that are already prefixed with git directly
2013-03-03 16:33:11 +01:00
Florian H
ce888d0664
Execute a shell command, if the command is prefixed with !
2013-03-03 16:24:07 +01:00
TJ Holowaychuk
d8492e68eb
Merge pull request #166 from Frusty/master
...
Option to omit config on git-info
2013-02-19 09:47:57 -08:00
Jan Krueger
b26c6524b5
Adding option to omit config in git-info
2013-02-19 17:54:28 +01:00
Philipp Klose
89440e019b
added git-archive-file to Readme.md
2013-02-17 19:48:54 +01:00
Philipp Klose
cbee46ceea
added man pages for git-archive-file
2013-02-15 05:46:21 +01:00
Philipp Klose
afefba7488
import from https://github.com/TheHippo/git-archive-file
2013-02-15 05:35:06 +01:00
TJ Holowaychuk
274b3dc819
Merge branch 'master' of github.com:visionmedia/git-extras
2013-01-28 12:27:32 -08:00
TJ Holowaychuk
2527e38102
fix one-liner. Closes #164
2013-01-28 12:21:04 -08:00
TJ Holowaychuk
4f711b23e6
remove INSTALL check
2013-01-28 12:19:41 -08:00
TJ Holowaychuk
8eeed2752b
Merge pull request #163 from pitr/patch-1
...
fix delete-branch to work with same-name tags
2013-01-27 13:27:11 -08:00
☃ pitr
a06d552933
fix delete-branch to work with same-name tags
...
when there's a tag and a branch with the same name, git errors out with
`error: dst refspec MY_BRANCH matches more than one.`
git-delete-tag is not affected by this bug
2013-01-24 13:16:08 -05:00
TJ Holowaychuk
e94413f729
Merge pull request #160 from southly/fix-typo
...
fix typo
2013-01-23 08:36:54 -08:00
NANRI
e71fa3f9e8
fix typo
2013-01-23 06:59:13 +09:00
TJ Holowaychuk
71c68cb9f4
Merge pull request #157 from gthb/patch-1
...
Move misplaced text into git effort section
2012-11-22 10:27:28 -08:00
Gunnlaugur Thor Briem
7b8c38a4bd
Move misplaced text into git effort section
2012-11-22 18:19:19 +00:00
TJ Holowaychuk
446bcd6f11
Merge pull request #155 from themalkolm/patch-4
...
Delete tag on origin even if it wasn't locally fetched yet.
2012-11-20 15:19:30 -08:00
TJ Holowaychuk
614d03364a
Merge branch 'master' of github.com:visionmedia/git-extras
2012-11-20 15:18:14 -08:00
TJ Holowaychuk
41c1719d84
change git-effort(1) to use /bin/bash for now. Closes #78
2012-11-20 15:17:51 -08:00
Alexander Krasnukhin
fbd2d8fe73
Delete tag on origin even if it wasn't locally fetched yet.
...
This should keep consistent logic among scripts i.e. git-delete-tag
should behave the same way as git-delete-branch.
2012-11-18 11:22:13 +01:00
TJ Holowaychuk
708c81934b
Merge pull request #154 from themalkolm/master
...
Delete branch on origin even if it wasn't locally fetched yet
2012-11-17 19:41:15 -08:00
Alexander Krasnukhin
670f531717
Delete branch on origin even if it wasn't locally fetched yet.
...
fix #144
2012-11-18 03:39:42 +01:00
TJ Holowaychuk
ee0097b448
Merge pull request #153 from themalkolm/master
...
Update bin/git-count
2012-11-17 11:45:07 -08:00
Alexander Krasnukhin
2c346d256a
Update bit/git-count
...
Matching "):" in the end can match commit subjects by mistake i.e. if
commit subject ends with "):" too (e.g. linux project has one such
commit).
To avoid this and any similar problems print summary only (-s).
Restructure output to look exactly as it was before with awk.
2012-11-17 13:40:43 +01:00
TJ Holowaychuk
77f90aeba0
Merge pull request #152 from themalkolm/patch-1
...
Update bin/git-count
2012-11-16 17:20:13 -08:00
Alexander Krasnukhin
867299c3d9
Update bin/git-count
...
Use git-rev-list and builtin --count option
$ time git log --oneline | wc -l
30613
real 0m0.858s
user 0m0.684s
sys 0m0.239s
$ time git rev-list --count HEAD
30613
real 0m0.416s
user 0m0.396s
sys 0m0.018s
2012-11-17 01:41:59 +01:00
TJ Holowaychuk
567aef7680
Merge pull request #149 from code42day/pu
...
slightly more forgiving git-delete-merged-branches
2012-11-04 10:58:45 -08:00
Damian Krzeminski
72881c18ad
docs updates for get-delete-merged-branches
...
-f|--force option added
2012-11-04 08:22:00 -07:00
Damian Krzeminski
9b5a66a33b
Make delete-merge-branches more user-friendly
...
It won't delete master. If you have a ligitimate reasn to delete master,
you probably should use delete-branch directly.
It works for multiple branches and it asks for confirmation each time.
-f|--force supresses confirmation
You can answer 'a' (all) when prompted, which means you won't be asked
again.
2012-11-01 07:42:58 -06:00
TJ Holowaychuk
5b72ac1b32
Revert "Added git-review to review files on branch since the branch was created."
...
This reverts commit 2bcd016f29 .
2012-10-29 12:38:56 -07:00
TJ Holowaychuk
fb38f798c0
Merge pull request #147 from code42day/pu
...
Add remote parameter to git-release
2012-10-26 13:07:38 -07:00
Damian Krzeminski
9b62449166
Add remote parameter to git-release
...
When present <remote> is passed to git push
It makes git-release usable even when you have non-standard remotes
configured
2012-10-25 18:19:04 -06:00
TJ Holowaychuk
115280714e
Merge pull request #145 from craigerm/master
...
Adding git-review
2012-10-24 19:55:02 -07:00
Craig MacGregor
2bcd016f29
Added git-review to review files on branch since the branch was created.
2012-10-24 13:07:04 -04:00
TJ Holowaychuk
27a6e72498
Merge pull request #143 from d2s/patch-1
...
Fix broken URL from Readme.md
2012-10-18 08:29:30 -07:00
Daniel Schildt
04df3cbdaa
Fix broken URL from Readme.md
...
Link to Homebrew repository was broken
because it did not have ``https://`` in the beginning.
2012-10-18 16:44:25 +03:00
TJ Holowaychuk
86a102e63e
Merge pull request #140 from jean/master
...
Add usage note to delete-branch.
2012-10-01 08:49:32 -07:00
Jean Jordaan
082f556969
Add usage note to delete-branch.
2012-10-01 17:44:32 +07:00
TJ Holowaychuk
2838a8cf26
Merge pull request #139 from tlvince/github-https
...
Replace http with https for man Github urls
2012-09-25 08:34:27 -07:00
Tom Vincent
17cc7b0e57
Replace http with https for man Github urls
2012-09-25 14:13:53 +08:00
TJ Holowaychuk
1e267d5916
Merge pull request #136 from jean/master
...
Fix grep pattern to find committers.
2012-09-01 10:28:19 -07:00
Jean Jordaan
74d9c030be
Fix pattern to find names.
...
Don't fall on your face if a commit message has ): in it somewhere.
2012-09-01 13:28:24 +07:00
TJ Holowaychuk
7f324175de
Merge pull request #131 from nickl-/develop
...
general fixes and improvements pt 3
2012-07-24 08:48:18 -07:00
nickl-
501d4b2759
Recommit of @d153e9c Changes to PR #114 .
...
Added -s --soft arguments as well.
Default roll-back one with HEAD^ and only using ~ if commit count more than 1.
Added auto complete.
Updated documentation.
Attitude adjustment: don't throw errors and say NO as suggested in #114 , have a can do attitude instead, leave the errors up to git to report.
2012-07-23 00:11:11 +02:00
nickl-
1f2b3ea203
Alphabetically sorted bash_completion.
...
Makes it easier to work with and slightly optimizes things for bash_completion which sorts these completions alphabetically.
2012-07-22 22:51:57 +02:00
TJ Holowaychuk
4353eee352
Merge pull request #130 from nickl-/develop
...
general fixes and improvements pt 2
2012-07-22 13:32:31 -07:00
nickl-
f076565a98
Generate only a single manual.
...
Added the ability to pass the .md document template as argument to manning-up.sh which will only generate the single document and rename the .1.html correctly before exiting and thus not building the index and all the docs again.
Includes updated documentation.
2012-07-22 22:27:38 +02:00
nickl-
2dc72a1d3b
merge with muthasib as per pull req #114 .
...
Pull req #114 Add -h --hard to git-undo.
2012-07-22 22:27:38 +02:00
nickl-
79c8753436
Add bash_completion for new git-ignore switches.
2012-07-22 22:27:38 +02:00
nickl-
95630d7fcb
Make all bin scripts executable.
2012-07-22 22:27:38 +02:00
nickl-
b7f5529b73
Add docs for shorthand version of --list.
2012-07-22 22:27:38 +02:00
nickl-
2ca31a8268
All documentation updated as a result from shell script.
...
The automated shell script now refreshed all the documentation and renamed the .1.html versions so no redundant files left.
2012-07-22 22:27:38 +02:00
nickl-
b7fe4c123a
The complete index of all available documents.
2012-07-22 22:27:37 +02:00
nickl-
7007b6e6e5
Added automated manual generation.
...
Bash script which rebuilds the indexes (index.txt and the links listed in git-extras.md) based on the collection of .md file documents avalable.
By interrogating the .md file for the documented description we null and void yet another possible consistency issue and avoid manual duplication mistakes.
Once the indexes are up to date we start from the begining of the directory listing again calling ronn on each .md to generate the man and html files as well as renaming the incerrectly name html file.
Result several incorrectly named .html documents are now removed, and all the documentation is up to date.
Documentation also updated.
2012-07-22 22:27:37 +02:00
nickl-
2aeb45a160
whitespace only
2012-07-22 22:27:37 +02:00
nickl-
e47d8d1a17
Added examples to git-commits-since
2012-07-22 22:27:37 +02:00
nickl-
c749fdc54f
Complete git-ignore includes global.
...
Did a rebase merge from the old pull request #46 which we may close now.
Yet it wasn't as simple as that in the end but all things have a resolve:
Added 2 context type arguments to specify --local or --global.
Refactored usage into functions te prevent duplication.
Capable to view and append to both global gitignore as well as the .gitignore from the working folder.
Supports all types of ignore patters including ! negated, comments as well as blank lines.
Complete documentation including several examples.
2012-07-22 22:27:37 +02:00
nickl-
8f4a17044d
Added git-show-tree.
...
See commits from all the branches plotted in a tree view.
2012-07-22 22:27:37 +02:00
TweeKane
aa084d9b7b
Add global gitignore to git-ignore output
2012-07-22 22:27:37 +02:00
Leila Muhtasib
6459db39aa
git-undo now includes -h|--hard option.
...
-h option allows you to undo the last commit without keeping the
changes in the local working directory. Use with care.
Updated documentation to include new option.
2012-07-22 22:27:37 +02:00
TJ Holowaychuk
515e94a0cd
Merge pull request #128 from nickl-/git-extras-html-hyperlinks
...
help ronn make hyperlinks.
2012-07-21 05:05:14 -07:00
TJ Holowaychuk
5f86b54f33
Merge pull request #129 from nickl-/develop
...
general fixes and improvements
2012-07-21 05:01:28 -07:00
nickl-
7398d10bd4
Fix #127 git-ignore won't add duplicates.
...
As per the bug identified in #127 git-ignore would add duplicate entries in .gitignore which is redundant and should not happen.
grep will suitably verify that the entry doesn't exit but only if the file actually exists or we will get an error on stderr. check if the
file exists with test -f and that the new entry is present or alternatively just go ahead and add the new value which will create the file if it didn't exist.
Running the same command again does not add the duplicate.
2012-07-21 13:34:35 +02:00
nickl-
815db8b89e
help ronn make hyperlinks.
...
With hte manuals described in index.txt ronn will create hyperlinks of the (1) referenced words.
See http://rtomayko.github.com/ronn/ronn.1#LINK-INDEXES .
git-extras.html will now be browsable, actually anywhere else you use the referenced names ie. git-extras(1) as defined in index.txt will generate as hyperlinks in html while keeping the text versions rendereder similarly than they used to using exactly the same procedures as already documented.
2012-07-21 12:25:58 +02:00
nickl-
ca7579e774
Fix typo in markdown and re-generate git-info
2012-07-21 09:08:11 +02:00
TJ Holowaychuk
60f8371d55
Merge pull request #126 from agrimaldi/fix-changelog-last-tag
...
Use git describe to fetch last tag in git-changelog
2012-07-16 08:59:16 -07:00
Alexis GRIMALDI
ea7d0dcd92
Use git describe to fetch last tag
2012-07-16 16:52:13 +02:00
TJ Holowaychuk
2646f387fa
Merge pull request #125 from brianloveswords/master
...
Add `git-obliterate`
2012-07-14 11:30:21 -07:00
Brian J Brennan
9fad21c498
Recursive remove by default.
2012-07-14 14:12:15 -04:00
Brian J Brennan
56fd961fc8
Add to readme
2012-07-14 14:07:58 -04:00
Brian J Brennan
df853d1c5b
Add git-obliterate for removing file from history.
2012-07-14 14:04:26 -04:00
TJ Holowaychuk
2dc7ff9793
Update master
2012-07-10 06:18:27 -07:00
TJ Holowaychuk
394c2c074b
Merge pull request #124 from agrimaldi/patch-1
...
Fix screencast link
2012-07-10 06:01:01 -07:00
Alexis GRIMALDI
a546165861
Fix screencast link
2012-07-10 08:56:01 +03:00
TJ Holowaychuk
126bff7b20
screencast link
2012-07-09 19:36:49 -07:00
TJ Holowaychuk
618e6a27c1
fix git-summary repo age, remove "ago"
2012-07-09 14:14:16 -07:00
TJ Holowaychuk
901c53c215
remove debug shit
2012-06-29 13:33:16 -07:00
TJ Holowaychuk
c66e9536fe
fix some quoting in git-pull-request and ensure the remote is available
2012-06-29 13:23:19 -07:00
TJ Holowaychuk
8b3040ed1b
fix git-pull-request curl body quoting
2012-06-29 13:07:42 -07:00
TJ Holowaychuk
604b9f3c58
add default of HEAD to git-pull-request
2012-06-29 13:05:42 -07:00
TJ Holowaychuk
d489ee24f5
add initial git-pull-request(1) implementation
2012-06-29 12:58:41 -07:00
TJ Holowaychuk
2287e07204
fix git-extras whitespace
2012-06-28 17:03:10 -07:00
TJ Holowaychuk
834a43c1bb
Merge pull request #122 from jespino/git-effort-with-dash
...
Fixed 2 bashism and now works on bash and dash
2012-06-28 17:02:36 -07:00
Jesús Espino
abf55ae76c
Fixed 2 bashism and now works on bash and dash
2012-06-29 00:30:54 +02:00
TJ Holowaychuk
4e17ad4b69
Merge pull request #119 from jespino/adding-manpages
...
Adding delete-merge-branches, gh-pages, rename-tag and squash manpages
2012-06-28 12:40:19 -07:00
TJ Holowaychuk
c10be63473
Revert "Removing a bashism from git-effort"
...
This reverts commit cb6c34bc26 .
2012-06-28 12:34:10 -07:00
TJ Holowaychuk
cf474ecb7a
Merge pull request #118 from jespino/bug/bashism-in-git-effort
...
Bug/bashism in git effort
2012-06-28 12:33:09 -07:00
Jesús Espino
cb6c34bc26
Removing a bashism from git-effort
2012-06-28 21:15:34 +02:00
Jesús Espino
82041039a5
Adding delete-merge-branches, gh-pages, rename-tag and squash manpages
2012-06-28 21:14:17 +02:00
Jesús Espino
c2c50d4659
Merge remote-tracking branch 'upstream/master'
2012-06-28 09:03:14 +02:00
TJ Holowaychuk
f6498e39f3
Merge pull request #117 from jespino/adding-manpages
...
Adding bug/refactor/feature man pages
2012-06-26 09:23:31 -07:00
Jesús Espino
50a0208f10
Adding bug/refactor/feature man pages
2012-06-26 11:04:30 +02:00
Jesús Espino
175b432eba
Adding bug/refactor/feature man pages
2012-06-26 10:59:39 +02:00
Jesús Espino
479bdce215
Merge remote-tracking branch 'upstream/master'
2012-06-26 10:46:10 +02:00
TJ Holowaychuk
38e41cf680
move active above commits in git-summary
2012-06-22 10:21:36 -07:00
TJ Holowaychuk
85c0b6dd88
Added git-delete-merged-branches(1)
2012-06-22 09:07:03 -07:00
TJ Holowaychuk
adcaf78418
Revert "Added git-has(1) to check if a commit is present in the current branch"
...
This reverts commit 9bfe4af5db .
2012-06-21 15:31:05 -07:00
TJ Holowaychuk
d90b17fde1
Merge branch 'master' of github.com:visionmedia/git-extras
2012-06-21 15:27:02 -07:00
TJ Holowaychuk
9bfe4af5db
Added git-has(1) to check if a commit is present in the current branch
2012-06-21 15:26:42 -07:00
TJ Holowaychuk
58b6270281
Merge pull request #116 from jespino/bug/rename-tag-without-shebang
...
Adding shebang to the rename-tag command
2012-06-20 08:37:22 -07:00
Jesús Espino
a915f6bce2
Merge branch 'bug/rename-tag-without-shebang'
2012-06-20 12:11:58 +02:00
Jesús Espino
465eabef9b
Adding shebang to the rename-tag command
2012-06-20 12:09:56 +02:00
TJ Holowaychuk
d58c8cff42
Merge pull request #113 from muhtasib/git_info
...
Updated main documentation to include git-info
2012-06-16 13:20:34 -07:00
Leila Muhtasib
e08ace3b46
Updated main documenation to include git-info
2012-06-16 16:16:34 -04:00
TJ Holowaychuk
0c693b9244
Merge pull request #105 from muhtasib/fix_undo
...
git-undo now keeps file changes when undoing.
2012-06-16 12:18:25 -07:00
TJ Holowaychuk
868c6fb0ad
Merge pull request #112 from muhtasib/git_info
...
Git info
2012-06-16 09:45:00 -07:00
Leila Muhtasib
fc32c729a3
Added documentation for git-info command.
2012-06-16 12:32:41 -04:00
Leila Muhtasib
e3952df2c1
Added git-info command.
...
Updated Authors document to include the name of the person whose idea this was.
2012-06-16 12:03:52 -04:00
TJ Holowaychuk
363338a55e
Merge pull request #110 from muhtasib/docs_git_effort
...
Docs git effort
2012-06-12 14:48:04 -07:00
Leila Muhtasib
313d128887
Updated git-extras to include git-effort.
...
Regenerated git-extras to reflect git-effort being added, and git-pull-request being removed.
Created Readme.md file on how to generate documenation.
2012-06-12 17:15:00 -04:00
Leila Muhtasib
755f07f5e4
Added missing documenation for git-effort command
2012-06-12 16:45:34 -04:00
TJ Holowaychuk
cd7242711b
Merge pull request #109 from muhtasib/docs_git_summary
...
Updating git-summary documentation
2012-06-12 11:17:31 -07:00
Leila Muhtasib
3c07115b23
Updating git-summary documentation, because we added a 'repo age' field to git-summary command.
2012-06-12 14:12:06 -04:00
TJ Holowaychuk
db657ed486
Merge pull request #108 from muhtasib/git_effort_add_dots
...
Added dots for fill instead of blank spaces
2012-06-12 09:54:04 -07:00
Leila Muhtasib
4fa2c1d144
Added dots for fill instead of blank spaces
2012-06-12 11:44:33 -04:00
TJ Holowaychuk
962778061e
Release 1.7.0
2012-06-11 11:00:53 -07:00
TJ Holowaychuk
c9fedfa27f
git-summary: shorter repo age
2012-06-11 10:57:26 -07:00
TJ Holowaychuk
510e2c4d1b
git-summary: make : line up
2012-06-11 10:57:05 -07:00
TJ Holowaychuk
e04e8b4cf8
Merge pull request #107 from muhtasib/summary_repo_age
...
Added repo age to git-summary.
2012-06-11 10:53:05 -07:00
Leila Muhtasib
c6f1a3eb3b
Added repo age to git-summary.
...
Shows intitial date of first commit and how long ago that was in parentheses.
2012-06-11 13:23:57 -04:00
Leila Muhtasib
67a5be6cc9
git-undo now keeps file changes when undoing.
...
Wiping out previous commits is error prone. Most people probably want to edit their
changes and commit again. Modified behavior so that when undoing a commit, changes
are left in the user directory unstaged.
2012-06-10 23:38:48 -04:00
TJ Holowaychuk
2e53ff6091
Release 1.6.0
2012-06-04 13:51:13 -07:00
TJ Holowaychuk
37424606ba
tweak update a bit
2012-06-04 13:48:38 -07:00
TJ Holowaychuk
c94619f920
Merge pull request #104 from wilmoore/bug/extras-update-to-honor-prefix
...
Corrected `git extras update` where ${PREFIX} was not honored for `make install`
2012-06-04 13:47:11 -07:00
Wil Moore III
b3cf0c8b3d
Favoring the use of bash "Parameter Expansion" instead of "dirname" as
...
"dirname" has some cross-platform challenges.
- removed the superfluous stderr redirection
- switched out dirname for param expansion
2012-06-04 14:34:46 -06:00
Wil Moore III
0b71ff6797
Corrected git extras update where ${PREFIX} was not honored for make install
...
- query for $PREFIX given location of `git-extras` script
- prefix `make install` with ${PREFIX} -- empty is given if $PREFIX not
set allowing makefile to continue to use it's default in that case.
2012-05-30 22:41:56 -06:00
TJ Holowaychuk
e75980a841
Merge pull request #103 from programble/patch-2
...
Uninstall bash completion from correct directory
2012-05-15 07:56:10 -07:00
Curtis McEnroe
1c95138455
Uninstall bash completion from correct directory
...
Target $(DESTDIR)/etc instead of $(DESTDIR)$(PREFIX)/etc to match install.
2012-05-14 22:25:08 -03:00
TJ Holowaychuk
f4936f4e23
git-release: removed "Prepared"
2012-05-11 09:47:49 -07:00
TJ Holowaychuk
785f546f68
Merge pull request #99 from creynders/master
...
modified changelog and added rename-tag
2012-05-03 10:46:55 -07:00
Camille Reynders
f6ac845dfa
Merge branch 'changelog_mods'
2012-05-03 19:30:05 +02:00
Camille Reynders
1914503d2f
added switch -l as shortcut for --list to git-changelog
2012-05-03 19:27:58 +02:00
Camille Reynders
0e97b5f9a0
git-changelog accepts optional parameter to pass changelog output file
2012-05-03 19:24:43 +02:00
Camille Reynders
b91534b234
fixed incorrect argument passing and added pushing to remote
2012-05-03 14:23:07 +02:00
Camille Reynders
cfb0d15aad
added git-rename-tag
2012-05-03 14:03:48 +02:00
TJ Holowaychuk
a4905546c0
ocd
2012-04-29 10:33:31 -07:00
TJ Holowaychuk
3ebb6bc45b
Merge pull request #98 from creynders/patch-1
...
git-release: made `git commit` optional and added `-a -m` switches to `tag`
2012-04-29 10:33:03 -07:00
creynders
69140cec81
made git commit optional and added -a -m switches to tag
2012-04-28 14:29:47 +03:00
TJ Holowaychuk
f89f974bca
Merge pull request #94 from wavded/patch-2
...
changelog pulls tags in reverse order
2012-04-20 14:46:28 -07:00
Marc Harter
148c89707e
changelog pulls tags in reverse order
2012-04-19 21:16:57 -05:00
TJ Holowaychuk
c7444a5674
Merge pull request #93 from wavded/master
...
switch to printf instead of echo for git-changelog
2012-04-19 09:27:13 -07:00
Marc Harter
059e01a864
switched to printf instead of echo
2012-04-19 11:15:38 -05:00
Michael Komitee
401e0a21e6
Added git-local-commits: script to show a log of all commits not pushed to origin
2012-03-31 16:15:00 -07:00
TJ Holowaychuk
d79a310ed1
fixed git-repl conditional
2012-03-27 08:01:59 -07:00
TJ Holowaychuk
32f836bfd1
Merge pull request #89 from nulltask/feature/repl-display-branch
...
Added displaying current branch name to git-repl(1) prompt
2012-03-27 08:00:08 -07:00
nulltask
50e47e0be0
Added displaying current branch name to git-repl(1) prompt
2012-03-27 17:33:39 +09:00
TJ Holowaychuk
736ffc30bf
Merge branch 'master' of github.com:visionmedia/git-extras
2012-03-26 15:20:14 -07:00
Dave James Miller
8fcabe34a3
Improvements to git-repl
...
Fix history support by padding -e to read again, and forcing use of Bash instead of default shell (dash on Debian doesn't work).
Fix support of quotes in commands by using eval.
Don't show git help when pressing enter without typing a command.
2012-03-26 15:19:36 -07:00
TJ Holowaychuk
5cb1590d93
Merge pull request #87 from mattoufoutu/master
...
use https in the automatic install script
2012-03-22 11:37:03 -07:00
Mathieu D. (MatToufoutu)
361f47ce40
use https to clone in the automatic install script
2012-03-22 18:15:19 +01:00
TJ Holowaychuk
bbd32d870a
Release 1.5.1
2012-03-15 16:50:46 -07:00
TJ Holowaychuk
82c9f9d904
Merge pull request #82 from mcolyer/patch-1
...
Fixes sorting issues with annotated and lightweight tags.
2012-02-29 18:24:58 -08:00
Matt Colyer
226f58ab6f
Fixes sorting issues with annotated and lightweight tags.
2012-02-29 17:25:47 -08:00
TJ Holowaychuk
e94e18aee5
Merge pull request #81 from programble/patch-1
...
Install bash completion to $(DESTDIR)/etc, not $(DESTDIR)$(PREFIX)/etc
2012-02-22 12:39:19 -08:00
Curtis McEnroe
0308bd0ba0
Install bash completion to $(DESTDIR)/etc, not $(DESTDIR)$(PREFIX)/etc
...
This fixes bash completion files being installed to /usr/etc when they should be installed to /etc.
2012-02-22 15:26:36 -05:00
Tj Holowaychuk
1d839fdd15
Added active days to git-summary(1) (and refactored)
2012-02-09 10:15:48 -08:00
TJ Holowaychuk
54f3b65b68
Removed git-pull-request(1)
...
not very useful since you have to lookup the number, in which case
you might as well just copy/paste the url and git am
2012-02-09 08:09:20 -08:00
TJ Holowaychuk
f07ca4b4d3
Merge pull request #65 from singingwolfboy/master
...
fixes for packaging
2012-02-09 00:18:15 -08:00
TJ Holowaychuk
acc244e553
mention cmd
2012-02-08 18:45:22 -08:00
TJ Holowaychuk
2db67fd831
sorted effort image
2012-02-08 18:44:17 -08:00
TJ Holowaychuk
738c784352
replace unsorted with sorted
2012-02-08 18:35:25 -08:00
TJ Holowaychuk
a1ed706328
Added: sort git-effort(1) results. Closes #73
2012-02-08 18:17:13 -08:00
TJ Holowaychuk
643d20801b
refactoring git-effort
2012-02-08 18:16:02 -08:00
Tj Holowaychuk
4db5ee02eb
Release 1.4.0
2012-02-08 16:45:48 -08:00
Tj Holowaychuk
e20cc82872
docs
2012-02-08 16:44:53 -08:00
Tj Holowaychuk
f6e8cc6ecc
Added: allow files to be passed to git-effort(1). Closes #71
2012-02-08 16:43:49 -08:00
Tj Holowaychuk
6aa2944727
Added: hide/show cursor for git-effort(1)
...
since it looks really funny otherwise
2012-02-08 16:40:26 -08:00
Tj Holowaychuk
38cba1a781
Changed: color git-effort(1) commits / active days independently
2012-02-08 16:35:47 -08:00
Tj Holowaychuk
a75f6db5bc
refactord git-effort(1)
2012-02-08 16:31:17 -08:00
David Baumgold
6fce92796c
Modified git-pull-request to be able to create pull requests, as well as apply them
2012-02-08 15:30:46 -05:00
David Baumgold
5a15aea7ab
Added git-gh-oauth: script to manage oauth keys for github
2012-02-08 15:30:11 -05:00
TJ Holowaychuk
b5c41548ce
active days img
2012-02-08 08:21:53 -08:00
TJ Holowaychuk
9b0bc89eac
Release 1.3.0
2012-02-08 08:19:57 -08:00
TJ Holowaychuk
3d8f8f340b
Added active days to git-effort(1) output
2012-02-08 08:18:01 -08:00
TJ Holowaychuk
be49961019
Release 1.2.0
2012-02-08 08:05:28 -08:00
TJ Holowaychuk
8f1a669c46
update git-effort(1) image
2012-02-08 08:03:44 -08:00
TJ Holowaychuk
77ff0fe0d4
Added a greater color range to git-effort(1)
2012-02-08 08:02:30 -08:00
TJ Holowaychuk
f07197c2cd
use red instead of green
2012-02-08 08:00:50 -08:00
TJ Holowaychuk
c2bd285ef8
ws
2012-02-08 07:59:57 -08:00
TJ Holowaychuk
9c7232afcf
Added --above <n> to git-effort(1)
2012-02-08 07:59:19 -08:00
David Baumgold
6ae2ba17ff
Merge branch 'master' of github:visionmedia/git-extras
2012-02-08 10:54:06 -05:00
TJ Holowaychuk
c1d2dfc04c
Release 1.1.0
2012-02-07 22:47:15 -08:00
TJ Holowaychuk
453251a208
docs for git-effort(1)
2012-02-07 22:42:59 -08:00
TJ Holowaychuk
a1ea7e3a32
Added git-effort(1) (not yet complete)
2012-02-07 22:40:37 -08:00
TJ Holowaychuk
e7280f0305
refactored git-summary(1)
2012-02-07 22:18:45 -08:00
TJ Holowaychuk
4a56adb294
Release 1.0.0
2012-02-04 14:01:59 -08:00
TJ Holowaychuk
0c2a86f058
Added _git_squash() to bash_completion.sh
2012-02-04 14:01:02 -08:00
TJ Holowaychuk
07d5ee82ff
fixed git-squash
2012-02-04 13:59:07 -08:00
TJ Holowaychuk
1c62e436b7
changed git-squash(1)
2012-02-04 13:51:43 -08:00
TJ Holowaychuk
183920262a
Merge pull request #68 from hoganlong/master
...
Typo
2012-02-04 11:32:05 -08:00
Hogan Long
e64d209fbf
Update man/git-fresh-branch.html
2012-02-04 13:22:38 -05:00
Hogan Long
d644366919
Update man/git-fresh-branch.1
2012-02-04 13:22:00 -05:00
Hogan Long
86b3edb06d
Update man/git-fresh-branch.md
2012-02-04 13:18:42 -05:00
Tj Holowaychuk
9dca3c36f6
Merge branch 'master' of github.com:visionmedia/git-extras
2012-02-01 13:07:27 -08:00
Tj Holowaychuk
902996edd2
Added git-squash
2012-02-01 13:07:14 -08:00
David Baumgold
3e3b4c918c
Send error messages to stderr instead of stdout
2012-01-25 11:52:08 -05:00
David Baumgold
a5c66eb7f4
Added MacPorts as a way to install git-extras
2012-01-25 11:30:32 -05:00
David Baumgold
86111254a4
Added myself to AUTHORS file
2012-01-25 11:18:26 -05:00
David Baumgold
bfc3f788a1
Make bash_completion install respect $(PREFIX) variable
2012-01-25 11:17:31 -05:00
David Baumgold
1d61a21b46
Support DESTDIR
...
See http://www.gnu.org/prep/standards/html_node/DESTDIR.html for details.
2012-01-25 11:11:47 -05:00
TJ Holowaychuk
948308bbf0
Release 0.9.0
2012-01-15 13:26:23 -08:00
TJ Holowaychuk
8ad024a515
make /etc/bash_completion.d
2012-01-15 13:25:46 -08:00
TJ Holowaychuk
8ff4ec94e7
Merge pull request #64 from jweslley/feature/bash_completion
...
bash completion support
2012-01-15 13:19:29 -08:00
Jonhnny Weslley
ad19d2fdcf
(un)installation instructions
2012-01-14 11:17:34 -03:00
Jonhnny Weslley
e4df35beff
bash completion script
2012-01-14 11:16:49 -03:00
Jonhnny Weslley
1c9867b476
remove git-ignore garbage
2012-01-14 11:16:28 -03:00
TJ Holowaychuk
62b51ad83c
Merge pull request #62 from inkel/patch-1
...
Fix minor documentation issue
2011-12-31 06:51:33 -08:00
Leandro López
3c26c94972
Adding git-ignore patterns from template was inside git-create-branch documentation.
2011-12-31 12:17:12 -02:00
TJ Holowaychuk
40b131d9cc
Release 0.8.1
2011-12-30 11:16:18 -08:00
TJ Holowaychuk
38e6b5e6ca
Merge pull request #61 from jweslley/feature/remove-git-promote
...
Remove git promote
2011-12-26 09:13:35 -08:00
Jonhnny Weslley
b4fe82ffb4
track gh-pages branch
2011-12-26 14:04:59 -03:00
Jonhnny Weslley
7a632e9026
remove git-promote
...
use the `-u` option instead:
git push -u origin branch_name
2011-12-26 14:04:45 -03:00
TJ Holowaychuk
2b77c93bf4
Update Readme.md
2011-12-16 09:08:43 -08:00
TJ Holowaychuk
6e0107ca76
Update Readme.md
2011-12-16 09:08:30 -08:00
Tj Holowaychuk
391431d267
Release 0.8.0
2011-12-08 07:56:26 -08:00
Tj Holowaychuk
c4e938d656
Added pre- post-release hooks to git-release
2011-12-08 07:55:29 -08:00
TJ Holowaychuk
cca7848b5b
Merge pull request #57 from jweslley/git-promote
...
Added git-promote
2011-11-24 10:29:49 -08:00
Jonhnny Weslley
7780038a39
Added git-promote
...
Promotes a local topic branch to a remote tracking branch of the same name,
by pushing and then setting up the git config.
Thanks to ENTP:
http://hoth.entp.com/2008/11/10/improving-my-git-workflow
2011-11-24 15:18:16 -03:00
Tj Holowaychuk
7a5833c88c
merged
2011-11-09 20:14:27 -08:00
Tj Holowaychuk
a5772a670c
Removed git-apply-branch
...
just realized --squash is pretty much this
2011-11-09 20:13:19 -08:00
TJ Holowaychuk
ecb2abae94
Merge pull request #51 from nulltask/bugfix
...
fixed: "git extra update" errors when pwd includes whitespace
2011-10-01 08:49:42 -07:00
nulltask
24bef3da5a
fixed: "git extra update" errors when pwd includes whitespace
2011-10-01 20:22:16 +09:00
TJ Holowaychuk
4ea2749225
Merge pull request #50 from Zearin/patch-1
...
Added syntax highlighting; numerous tweaks to punctuation; use present te
2011-09-28 08:33:44 -07:00
Tony
f51e56b4e2
Added syntax highlighting; numerous tweaks to punctuation; use present tense consistently throughout; tweaked markup so commands are backticked for readability.
2011-09-28 09:25:15 -03:00
Tj Holowaychuk
897ed16e6b
Added git-apply-branch
2011-08-25 11:45:17 -07:00
Tj Holowaychuk
834b06e895
doc typo
2011-08-24 19:53:50 -07:00