Журнал лабораторных работ

Содержание

Журнал

Понедельник (12/17/18)

/dev/pts/0
13:51:38
$ls
README.md
13:51:41
$man git
14:01:37
$vi README.md
14:02:16
$git add README.md

14:02:21
$git co
commit   config
14:02:21
$git commit "edit readme"
error: pathspec 'edit readme' did not match any file(s) known to git.
14:02:56
$ls
README.md
14:02:59
$git config --global user.email "hikinsuchi@gmail.com"

14:06:00
$git push
Username for 'https://github.com': pisanny
Password for 'https://pisanny@github.com':
Counting objects: 3, done.
Writing objects: 100% (3/3), 249 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/pisanny/aws
   16f23f7..27b135c  master -> master
14:07:09
$git sta
stage    stash    status
14:07:09
$git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working tree clean
14:09:25
$vi hello.md
14:09:54
$git status
On branch master
Your branch is up-to-date with 'origin/master'.
Untracked files:
  (use "git add <file>..." to include in what will be committed)
        hello.md
nothing added to commit but untracked files present (use "git add" to track)
14:10:05