Commit 68efc8016cbac2548f84708efb25dcd11844d14c
Merge pull request #153 from mykhaly/fix_git_status
Add status, diff and reflog to "Залогувати git-дані"
Showing
1 changed file
with
8 additions
and
1 deletions
... | ... | @@ -48,7 +48,14 @@ Set Suite Variable With Default Value |
48 | 48 | ${commit}= Run git log --graph --pretty --abbrev-commit --date=relative -n 30 |
49 | 49 | ${repo}= Run git remote -v |
50 | 50 | ${branch}= Run git branch -vva |
51 | - Log many ${commit} ${repo} ${branch} | |
51 | + ${status}= Run git status | |
52 | + ${diff}= Run git diff | |
53 | + ${reflog}= Run git reflog | |
54 | + Log ${commit} | |
55 | + Log ${repo} | |
56 | + Log ${branch} | |
57 | + Log ${diff} | |
58 | + Log ${reflog} | |
52 | 59 | |
53 | 60 | |
54 | 61 | Завантажуємо дані про користувачів і майданчики | ... | ... |
Please
register
or
login
to post a comment