-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Elegant git | ||
=========== | ||
Your `git` experience will be changed forever. | ||
|
||
Philosophy | ||
---------- | ||
- declarative interaction | ||
- no merge commits | ||
|
||
Limitations | ||
----------- | ||
Support only one default remote - `origin`. | ||
|
||
Commands | ||
-------- | ||
### feature | ||
Creates a new branch based on `master`. If there are some uncommitted changes, they will be moved to the new branch. | ||
|
||
### pull | ||
Downloads new updates for a local branch. | ||
|
||
### push | ||
Upload current local branch to a remote one. If the remote branch is absent, it will be created. | ||
|
||
### rebase | ||
Reapplies commits on top of the latest `origin/master`. | ||
|
||
### push-after-rebase | ||
Executes [git elegant push](#push) after [git elegant rebase](#rebase). | ||
|
||
### init | ||
Creates an empty Git repository or reinitialize an existing one. Then runs local repository configuration. | ||
|
||
### clone | ||
Clone a repository into a new directory. Then runs local repository configuration. | ||
|
||
### add | ||
Adds file contents to the index interactively. | ||
|
||
### clear-local | ||
Removes all local branches which don't have remote tracking branches. | ||
|
||
### configure | ||
Defines some settings for both _global_ and _local_ `git config`. | ||
|
||
### check | ||
Shows trailing whitespaces of uncommitted changes. | ||
|
||
### commands | ||
Displays all available commands. | ||
|