Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,24 @@
plm = pull origin master
psm = push origin master
rao = remote add origin
see = diff-tree --no-commit-id --name-only -r
rollback = revert
ls = config --get-regexp alias

[color]
branch = auto
diff = auto
grep = auto
interactive = auto
status = auto
status = auto

[core]
editor = mate -w
editor = vim -w

[help]
autocorrect = 1

[user]
name = YOUR NAME
email = YOUR EMAIL
name = "PUT YOU EMAIL HERE"
email = "PUT YOUR EMAIL HERE"

9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,24 @@ Personal git configuration used in day-to-day projects to make the developer's l
plm = pull origin master
psm = push origin master
rao = remote add origin
see = diff-tree --no-commit-id --name-only -r "<commit hash here!>"
rollback = revert "<commit hash here!>"

[color]
branch = auto
diff = auto
grep = auto
interactive = auto
status = auto
status = auto

[core]
editor = mate -w
editor = vim -w

[help]
autocorrect = 1

[user]
name = YOUR NAME
email = YOUR EMAIL
name = "PUT YOUR NAME HERE"
email = "PUT YOUR EMAIL HERE"

````