-
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. | ||
|
08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
9-5878affc
disappeared fromsrc/main/git-elegant
, that's why I closed #39.08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
89-27642c68
discovered inCONTRIBUTING.md
and submitted as #97.08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
89-d0540227
discovered inCONTRIBUTING.md
and submitted as #98.08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
89-c39c3654
discovered insrc/test/commons.bash
and submitted as #99.08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
89-5ae02b5b
discovered insrc/test/commons.bash
and submitted as #100.08b78ee
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
89-c19177fa
discovered insrc/test/commons.bash
and submitted as #101.