githubteacher / githubteacher/essentials-dec-2016
Command Line History from Day 1
- Dominant language
- No language data
- Stars
- 1
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
```
418 git --version
419 git config --global user.name "Cynthia Rich"
420 git config --global user.email "crichID@github.com"
421 git config --global core.autocrlf input
422 git init blog
423 cd blog
424 git status
425 ls
426 ls -al
427 tree .git
428 git status
429 cat .git/HEAD
430 cat .git/refs/heads/master
431 echo "## My New Blog" >> README.md
432 git status
433 git add README.md
434 git status
435 tree .git
436 git status
437 git commit
438 tree .gt
439 tree .git
440 cat .git/refs/heads/master
441 ls
442 touch index.html
443 atom .
444 git status
445 git add index.html
446 git status
447 git commit -m "adding a stub of an index file"
448 clear
449 git status
450 git remote add origin https://github.com/githubteacher/blog.git
451 git remote
452 git remote -v
453 git push -u origin master
454 history
455 clear
456 git branch
457 git branch add-template
458 git branch
459 git checkout add-template
460 git branch
461 git status
462 git add README.md
463 git status
464 git add .
465 git status
466 git commit -m "adding the personal theme"
467 ls
468 git checkout master
469 ls
470 cat README.md
471 git checkout add-template
472 atom .
473 git status
474 git commit -a -m "update config.yml to my info"
475 ls -al
476 git status
477 git branch
478 git branch --all
479 git push -u origin add-template
480 clear
481 git checkout master
482 git merge add-template
483 git push
484 git log
485 git log --stat
486 git log --patch
487 git log --oneline
488 git log --oneline --graph
489 git log --oneline --graph --decorate
490 git log --oneline --graph --decorate --all
491 git log --grep=stub
492 git config --global alias.lol "log --oneline --graph --decorate --all"
493 git lol
494 git branch --all
495 git branch --merged
496 git branch -d add-template
497 git branch mistake-branch
498 git branch --all
499 git branch -D mistake-branch
500 history
501 cd documents/scratch/blog
502 cd ..
503 git clone https://github.com/githubteacher/essentials-dec-2016.git
504 cd essentials-dec-2016
505 ls -al
506 git lol
507 git checkout -b githubteacher-blog
508 touch githubteacher.md
509 echo "https://githubteacher.github.io/blog" >> githubteacher.md
510 git status
511 git add *.md
512 git status
513 git commit -m "adding a githubteacher blog"
514 git remote -v
515 git push -u origin githubteacher-blog
516 history
517 git fetch
518 git branch --all
519 git checkout cjs6891
520 git branch --all
521 ls -al
522 cat cjs6891.md
523 atom .
524 git status
525 git add .
526 git commit -m "markdown formatting in cjs file"
527 git push
528 git branch --all
529 history
530 git branch
531 git checkout githubteacher-blog
532 git pull
533 git checkout master
534 git merge githubteacher-blog
535 ls
536 git push
537 git pull
538 git push
539 history
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.