Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 497 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 497 Bytes

git_to_the_future_sample

Aliases

The format for renaming a command (making an alias) in git is git config alias.newcommandname oldcommandname

git config alias.co checkout lets you type git co instead of git checkout

git config alias.stage add lets you type git stage file instead of git add file to stage files

git config alias.unstage 'reset HEAD -- file' lets you type git unstage file instead of git reset HEAD -- file to unstage files