]> rtime.felk.cvut.cz Git - hubacji1/oneflow.git/blobdiff - README.md
Add coffe
[hubacji1/oneflow.git] / README.md
index 64f89c7c374b3e89fc3cd9e249a86660345c32e2..ace8549093257dba820e84813c6b402bdbe3a5ec 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,43 +1,8 @@
 # OneFlow playground
-The purpose of this repo is to play!
+The purpose of this repo is to play! Real fun!
 
-# Git is ...
-Source Code Management (SCM) and it's great. Check out https://git-scm.com/ for
-details.
-
-# Init - do it once per repository
-You may clone it like `git clone URL` or create one from a folder by `git
-init`.
-
-Also, just after first commit, you may be asked to set up your name and email
-address with `git config ...` command. If `--global` is used the name and/or
-email will be automatically used for all the commits.
-
-# Explore - check out the repository history
-The command that show the whole history is `git log`. The history is build from
-commits - changes to files in row scale.
-
-The changes of the commit can be shown by `git show COMMIT_ID`. Where the
-`COMMIT_ID` is the identifier obtained from `git log` command.
-
-# Changes - check out before commit
-The status of the repository can be checked by `git status` command. This
-allows you to see *new files* that are not yet tracked, *changed files* whose
-changes are not yet ready to be commited to the log history and *changed files*
-that are ready.
-
-The `git diff` command shows *changes* in not-yet-ready files and `git diff
---cached` shows *changes* that are ready to be committed.
-
-# Commit - build repository history
-You get ready the files to be commited to the history by `git add FILE`
-command. If you change your mind, you may `git reset FILE` that file.
-
-If only huks of lines in file should be prepared for commiting to the history
-`git add -p FILE` and `git reset -p FILE` can be used respectively.
-
-Before commiting to the history log check twice `git diff --cached` and `git
-diff`.
-
-When sure that staged changes should be commited to the history, use `git
-commit -m'COMMIT MSG'`.
+# Parts
+- [Git intro](./intro.md)
+- [Branching](./branching.md)
+- [Remote](./remote.md)
+- [OneFlow](./oneflow.md)