Hemanth.HM
b238e44ff1
git show
2016-04-29 20:18:50 +05:30
Hemanth.HM
168303734b
staged diff
2016-04-18 20:11:57 +05:30
Hemanth.HM
157337d356
orphan branch
2016-04-10 21:07:36 +05:30
hemanth.hm
afa8747b07
Merge pull request #45 from dcortes92/master
...
Added tip to remove an entry from the global config.
2016-04-07 09:48:23 +05:30
Daniel Cortes
8b9d2366f1
Added tip to remove an entry from the global config.
2016-04-06 14:20:46 -06:00
Hemanth.HM
1cde458164
GPG sig in logs
2016-04-06 18:57:11 +05:30
Hemanth.HM
a01ef67d14
instaweb
2016-04-02 22:00:49 +05:30
Hemanth.HM
33c82592ac
gc
2016-03-29 21:45:21 +05:30
Hemanth.HM
67b0393bb1
count-objects
2016-03-29 21:41:53 +05:30
Hemanth.HM
def56a7e7b
open conflicted files
2016-03-11 19:28:15 +05:30
Hemanth.HM
1ca386656a
rerere.enabled
2016-03-09 22:28:58 +05:30
Hemanth.HM
a5be265d69
Commits in Branch1 that are not in Branch2
2016-03-06 16:58:58 +05:30
Hemanth.HM
46e66ce4b5
Status of ignored files.
2016-03-02 19:36:56 +05:30
Hemanth.HM
27f7cefb1b
List ignored files.
2016-03-02 19:33:10 +05:30
Hemanth.HM
7dcbedb269
-am
2016-02-26 19:08:55 +05:30
Hemanth.HM
d07dd0040c
--autosquash tip
2016-02-22 19:20:47 +05:30
Hemanth.HM
f886fd31fa
--fixup tip
2016-02-22 19:16:57 +05:30
hemanth.hm
cf260b7ef4
Merge pull request #43 from samarpanda/single-file-from-stash
...
Grab a file from stash / commit-hash!
2016-02-13 10:15:23 +05:30
Samar Panda
e416adc1ff
Untrack files without deleting
2016-02-12 23:56:56 +05:30
Samar Panda
c42e1547ab
Grab a file from a stash. Restore file as per a commit hash
2016-02-12 23:40:59 +05:30
Hemanth.HM
90d98ea980
--dry-run
2016-02-10 17:26:02 +05:30
Hemanth.HM
7e6c5f71b2
Check if the change was a part of a release.
2016-02-02 18:36:01 +05:30
Hemanth.HM
f8d2278bd0
auto correct typos
2016-01-31 21:00:33 +05:30
Hemanth.HM
f4b8b94f59
Make git case sensitive.
2016-01-31 20:58:17 +05:30
Hemanth.HM
dfc0613a78
List config and alias
2016-01-29 22:09:51 +05:30
Hemanth.HM
c99cc15ad1
Format
2016-01-29 22:07:26 +05:30
Hemanth.HM
2ce80d7d5d
Reset author
2016-01-17 22:13:52 +05:30
Hemanth.HM
321da85d47
ammed author
2016-01-17 22:12:36 +05:30
Hemanth.HM
3c31eac721
branch.autosetuprebase
2016-01-01 21:12:17 +05:30
Hemanth.HM
7078656d7c
Restore deleted file.
2015-12-27 19:08:25 +05:30
Hemanth.HM
8181a37dd1
clean files from .gitignore
2015-12-25 19:25:50 +05:30
Hemanth.HM
6197057dc7
--assume-unchanged and no--assume-unchanged
2015-12-19 22:25:07 +05:30
Hemanth.HM
7f3f56c62e
inline word diff
2015-12-18 20:56:55 +05:30
hemanth.hm
8854ea08c3
Merge pull request #41 from ejmr/show-git-guides
...
Show how to read guides that come with Git
2015-11-18 13:27:22 +05:30
Eric James Michael Ritz
d80c4ed36c
Show how to read guides that come with Git
...
This patch adds a tip explaining `git help -g`. That command will
list a collection of useful guides that come "pre-built" with Git,
e.g. `git help workflows` and `git help revisions`. These are useful
resources for learning and looking-up common Git concepts and
techniques, and that broad usefulness is the justification for placing
the tip near the very top of the list.
Signed-off-by: Eric James Michael Ritz <ejmr@plutono.com>
2015-11-17 21:20:38 -05:00
hemanth.hm
35376fe492
Merge pull request #40 from ejmr/show-most-recent-tag
...
Add a tip to show the most recent tag
2015-11-06 12:56:00 +05:00
Eric James Michael Ritz
7fdd7304d0
Add a tip to show the most recent tag
...
This tip shows how to display the most recent tag reachable on the
current branch. The use of `--abbrev=0` is necessary otherwise the
output would contain additional information (specifically part of a
commit hash), appended to the tag name. It's worth noting that this
command is usable for branches other than the current one, e.g.
$ git describe --tags --abbrev=0 master
That would show the most recent tag on the `master` branch regardless
of whatever branch the user is currently on.
Signed-off-by: Eric James Michael Ritz <ejmr@plutono.com>
2015-11-02 22:00:16 -05:00
hemanth.hm
6ac9a177bd
Merge pull request #38 from samarpanda/modify_pr_locally
...
Fetch PR by ID to a local branch!
2015-10-29 12:04:05 +05:30
Samar Panda
f89a062f72
Fetch PR by ID to a local branch
2015-10-28 16:24:02 +05:30
hemanth.hm
c4f2cbbc44
Merge pull request #39 from ejmr/help-and-rebase-tips
...
Help and rebase tips
2015-10-28 10:18:32 +05:30
Eric James Michael Ritz
c46f049974
Add a tip for automatically stashing changes before a rebase
...
Signed-off-by: Eric James Michael Ritz <ejmr@plutono.com>
2015-10-28 00:45:57 -04:00
Eric James Michael Ritz
1646af51e3
Describe help for commonly-used Git commands with examples
...
This patch adds the command `git help everyday`, which shows a
man-page that comes with Git describing the most common commands for
everyday usage. The tip is specifically at the top of the list on the
grounds that it is the fastest way to find help for performing basic
operations in Git, which is very useful to people new to Git.
Signed-off-by: Eric James Michael Ritz <ejmr@plutono.com>
2015-10-28 00:45:42 -04:00
hemanth.hm
8234cbe16b
Merge pull request #37 from lambda2/master
...
Typo
2015-10-11 17:38:46 +05:30
André Aubin
af16b3c8eb
Typo
...
form → from
2015-10-09 14:28:19 +02:00
hemanth.hm
448cc5bd46
Merge pull request #36 from vinkla/prunes
...
Purnes -> Prunes
2015-09-29 17:03:25 +05:30
Vincent Klaiber
47a525a534
Purnes -> Prunes
2015-09-29 12:37:17 +02:00
hemanth.hm
af941c07f1
Merge pull request #35 from jpmens/ignore1
...
Commit all but one file
2015-09-29 13:18:08 +05:30
Jan-Piet Mens
31ce22adac
ignore a file
2015-09-29 09:43:53 +02:00
hemanth.hm
9bf3440e0e
Merge pull request #34 from Yonaba/patch-1
...
Fixed typo
2015-09-21 08:53:33 +05:30
Roland
3b8df89962
Fixed typo
2015-09-20 18:52:48 +00:00