Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | .gitconfig: Add default Git `push.default` config | Haralan Dobrev | 2014-06-14 | 1 | -0/+7 |
| | | | | | | Use the backwards-compatible `matching` setting by default. On machines with newer Git installations, it avoids the annoying Git warning, and it can be overriden to use `simple` instead in `~/.extra`. Closes #400. | ||||
* | .gitconfig: Tweak `diff` colors | Mathias Bynens | 2014-06-08 | 1 | -2/+2 |
| | |||||
* | .gitconfig: Remove `push.default` | Mathias Bynens | 2014-06-08 | 1 | -4/+0 |
| | | | | | | This was causing issues on servers that don’t have an up-to-date Git installation. As a workaround, I decided to remove this from `.gitconfig` and add this to `~/.extra` for my laptop only: git config --global push.default simple | ||||
* | .gitconfig: Improve configuration | Haralan Dobrev | 2014-06-07 | 1 | -7/+23 |
| | | | | Closes #366. | ||||
* | Remove some things that I don’t use | Mathias Bynens | 2014-06-07 | 1 | -0/+38 |
| | | | | This commit drops some aliases, functions, and settings from the project that I wasn’t using at all. It also cleans up some of the remaining code. | ||||
* | .gitconfig: Make sure `go` never overrides branches | Thanasis Polychronakis | 2014-05-07 | 1 | -1/+1 |
| | | | | Closes #357. Thanks to @yukideluxe! | ||||
* | .gitconfig: Explicitly disable `indent-with-non-tab` | Luveen Rupchand Wadhwani | 2014-03-05 | 1 | -3/+2 |
| | | | | | | | | Don’t use `indent-with-non-tab`. This config flag is PERNICIOUS. If turned on, Git won’t tell you that you indented your code incorrectly. Instead, when it is pushing your changes to your remote repo, Git will silently convert any consecutive 8-space strings it sees into tab characters. This can be highly undesirable, especially if you collaborate with a team that expects the code to be indented using spaces instead of tabs. At the very least, the comment above this line should very clearly explain the fact that `indent-with-non-tab` does more than advertised in the `git-config man page (https://www.kernel.org/pub/software/scm/git/docs/git-config.html). Closes #351. | ||||
* | .gitconfig: Add `dm` alias | Jarrett Drouillard | 2013-12-13 | 1 | -0/+2 |
| | | | | | | `git dm` deletes local branches that have been merged with master. Closes #309. | ||||
* | .gitconfig: Add aliases to find branches/tags/commits | solygen | 2013-12-08 | 1 | -0/+8 |
| | | | | Closes #304. | ||||
* | .gitconfig: Make `git rebase` safer on OS X | Mathias Bynens | 2013-11-26 | 1 | -0/+3 |
| | | | | | | See <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>. Closes #291. | ||||
* | .gitconfig: Add note about whitespace defaults | Kevin Suttle | 2013-09-19 | 1 | -1/+4 |
| | | | | Closes #256. | ||||
* | .gitconfig: Add comment about `color.ui` in Git ≥ 1.8.4 | Sindre Sorhus | 2013-09-07 | 1 | -2/+4 |
| | | | | Ref. #239. | ||||
* | .gitconfig: Remove global remote branch | Dean Sofer | 2013-08-08 | 1 | -5/+0 |
| | | | | | | This causes duplicate remotes to be created, potentially leading Git to throw errors when `push`ing. Closes #215. | ||||
* | .gitconfig: Improve display of astral Unicode symbols in diffs | Mathias Bynens | 2013-07-25 | 1 | -1/+1 |
| | | | | Thanks to @holman for the tip: https://speakerdeck.com/holman/more-git-and-github-secrets?slide=38 | ||||
* | .gitconfig: Tweak `l` alias | Mathias Bynens | 2013-06-07 | 1 | -2/+2 |
| | |||||
* | .gitconfig: Use `push.default = matching` | Mathias Bynens | 2013-05-09 | 1 | -1/+1 |
| | | | | I couldn’t get used to `simple`. | ||||
* | .gitconfig: Remove the destructive `undopush` alias | Mathias Bynens | 2013-03-17 | 1 | -2/+0 |
| | |||||
* | Use newlines at EOF consistently | Mathias Bynens | 2013-03-10 | 1 | -1/+1 |
| | |||||
* | .gitconfig: Set `push.default = simple` | Mathias Bynens | 2012-11-19 | 1 | -1/+4 |
| | | | | This will be the default in Git v2. | ||||
* | .gitconfig: Explain `diff`-related aliases | Mathias Bynens | 2012-09-01 | 1 | -1/+2 |
| | |||||
* | .gitconfig: Tweak `diff` aliases | Dominik Porada | 2012-08-31 | 1 | -1/+2 |
| | |||||
* | .gitconfig: Add `reb` alias | Dominik Porada | 2012-08-27 | 1 | -0/+2 |
| | | | | Stolen from https://github.com/porada/dotfiles/commit/05162b585b2e9cd6a92f12e1c61e1f5687104a17. | ||||
* | .gitconfig: Tweak `ca` alias | Mathias Bynens | 2012-06-05 | 1 | -1/+1 |
| | | | | Thanks to @necolas! https://github.com/mathiasbynens/dotfiles/commit/15d4c9583d66be40a497706134b637e8c1f10ae6#commitcomment-1416521 | ||||
* | .gitconfig: Show the diff when writing a commit message | Mathias Bynens | 2012-06-04 | 1 | -1/+1 |
| | | | | Thanks to @miketaylr: http://twitter.com/miketaylr/status/209688450868326400 | ||||
* | .gitconfig: Add `tags`, `branches` and `remotes` aliases | Mathias Bynens | 2012-06-04 | 1 | -0/+4 |
| | |||||
* | .gitconfig: Add `credit` alias to quickly change the author of the latest commit | Mathias Bynens | 2012-05-23 | 1 | -0/+2 |
| | | | | Inspired by @holman’s https://github.com/holman/dotfiles/blob/master/bin/git-credit. | ||||
* | .gitconfig: Make `git ca` remove deleted files, too | Mathias Bynens | 2012-04-23 | 1 | -1/+1 |
| | |||||
* | .gitconfig: Use `origin` as the default remote on the `master` branch | Mathias Bynens | 2012-03-13 | 1 | -0/+5 |
| | | | | | | Apparently there are cases where this is not the default: http://stackoverflow.com/q/658885/96656 Hat tip to @cowboy. | ||||
* | .gitconfig: Add `d` alias | Mathias Bynens | 2012-02-19 | 1 | -0/+2 |
| | |||||
* | .gitconfig: Add `c` alias which clones a repository including all submodules | Mathias Bynens | 2012-02-16 | 1 | -0/+2 |
| | |||||
* | .gitconfig: Add `go` and `ca` aliases | Mathias Bynens | 2012-02-14 | 1 | -0/+4 |
| | |||||
* | .gitconfig: Add comments | Mathias Bynens | 2012-02-14 | 1 | -3/+17 |
| | |||||
* | Move `undopush` alias to `.gitconfig`, as suggested by @necolas | Mathias Bynens | 2012-02-14 | 1 | -0/+5 |
| | | | | Also, add some other Git aliases while we’re at it. | ||||
* | Typo. | Mathias Bynens | 2011-09-26 | 1 | -1/+1 |
| | |||||
* | Fix .gitconfig formatting (use tabs instead of spaces). | Mathias Bynens | 2011-09-26 | 1 | -23/+23 |
| | |||||
* | Whitespace cleanup. | Mathias Bynens | 2011-09-05 | 1 | -1/+1 |
| | |||||
* | Initial commit. | Mathias Bynens | 2011-09-05 | 1 | -0/+35 |