507 git clone https://github.com/jonbertelsen/Dat2GitDemo.git 508 ls 509 cd Dat2GitDemo/ 510 ls 511 ls -a 512 git log 513 git logg 514 clear 515 git log --oneline --decorate --graph --all 516 git config --global alias.logg "log --graph --decorate --oneline --abbrev-commit --all" 517 ls 518 git logg 519 nano mastertextfile.txt 520 ls 521 cat mastertextfile.txt 522 git add . 523 git status 524 git commit 525 git status 526 git push 527 clear 528 git branch dev 529 git checkout dev 530 git branchj 531 git branch 532 nano firstdevfile.txt 533 ls 534 git status 535 git add . 536 git status 537 git commit -m "First dev commit" 538 git push 539 git push --set-upstream origin dev 540 ls 541 git status 542 git checkout master 543 ls 544 git checkout dev 545 ls 546 ls 547 ls -a 548 cd .git 549 ls 550 cat config 551 cd .. 552 ls 553 git branch 554 git logg 555 nano seconddevfile.txt 556 ls 557 git add . 558 git commit -m "seconddev commit" 559 git push 560 ls 561 checkout master 562 git checkout master 563 ls 564 nano masterfile2.txt 565 git add . 566 git commit -m "master 2nd commit" 567 git push 568 ls 569 git checkout master 570 git branch 571 git merge dev 572 git commit -m "First sprint merge from dev" 573 ls 574 git branch 575 git push 576 git checkout dev 577 nano sprint2devfile.txt 578 ls 579 git add . 580 git commit -m "Secondsprint2 commit" 581 git push 582 git logg 583 git branch 584 git checkout -b "feature1" 585 git branch "feature1" 586 git checkout feature1 587 git branch 588 nano feature1file.txt 589 ls 590 git add . 591 git commit -m "feature commit" 592 git push 593 git push --set-upstream origin feature1 594 git checkout dev 595 nano devfile4.trxt 596 git add . 597 git commit -m "dev during feature dev" 598 git push 599 git branch 600 git merge feature1 601 git branch 602 git checkout master 603 git merge dev 604 git push 605 git logg 606 ls 607 history 608 man history 609 history > hist.txt