├── 2018.js ├── Adios.html ├── GIT command summary.md ├── Poland.html ├── README.md ├── SriLanka.html ├── Thanks.html ├── Thanks.js ├── aloha.js ├── assets ├── .picasa.ini ├── .picasaoriginals │ ├── .picasa.ini │ └── TY_legend.jpg ├── Net-Ninja.png ├── TY_legend.jpg ├── swayambhunath_monastery.jpg └── thanks.png ├── awesome.html ├── brazil.html ├── cheeselandUSA.html ├── chile.html ├── gitCommands_kapil.txt ├── gradient.html ├── hello.js ├── himalayas.html ├── index.html ├── india.html ├── italy.html ├── legend.html ├── main.js ├── morocco.html ├── nederland.html ├── netninja.png ├── nigeria.html ├── ninja.html ├── ninja.js ├── ninjaaaa.html ├── niteshcontribution.html ├── notes └── Notes.docx ├── philippines.html ├── srilanka.html ├── style.css ├── test.html ├── thanks.html ├── thanks_a_lot.html ├── thanku.html ├── thankyou.html ├── uefa.html ├── uganda.html ├── usa.html └── view ├── deafult.html └── index.html /2018.js: -------------------------------------------------------------------------------- 1 | //add in your name to the array if you watched the tutorial in 20187 2 | let _2018viewers = [ 3 | { 4 | "ninjas": [ 5 | "Anthonylan" 6 | "Shoaib" 7 | 8 | ] 9 | } 10 | ] 11 | 12 | 13 | _2018viewers.forEach(viewers => { 14 | console.log(viewers.ninjas); 15 | } 16 | ) 17 | -------------------------------------------------------------------------------- /Adios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/Adios.html -------------------------------------------------------------------------------- /GIT command summary.md: -------------------------------------------------------------------------------- 1 | ## Git Command summary from NetNinja's Youtube tutorial 2 | 3 | #### Single Git Commands 4 | Initialize a git repo in the current directory 5 | 6 | # git init add --username 7 | # git init add --email 8 | 9 | Add all untracked changed files to staging, ready to be committed 10 | 11 | # git add -A 12 | 13 | Commit with a message 14 | 15 | # git commit -m "some message here" 16 | 17 | Review your commit history or checkpoints in time log, (gives you the commit address for reference): 18 | 19 | # git log --oneline 20 | 21 | Switch to a a previous commit to review code from that checkpoint 22 | 23 | # git checkout 24 | 25 | Sync a remote repository to local repository with automatic alias assigned called "origin" 26 | 27 | # git remote add 28 | 29 | Push from local branch "master" up to remote branch "origin" (where 'origin' is set as an alias to the remote repository) 30 | 31 | # git push origin master 32 | 33 | Pull from remote branch "origin" down to local branch "master" 34 | 35 | # git pull origin master 36 | 37 | Create a new branch to manage a side hustle in project 38 | 39 | # git branch 40 | 41 | View all branches in your repository, also marks the branch you are working on with * 42 | 43 | # git branch -a 44 | 45 | Switch to a branch to work in it 46 | 47 | # git checkout 48 | 49 | Delete a branch 50 | 51 | # git checkout master 52 | // Deleting local branch 53 | # git branch -D 54 | -------------------------------------------------------------------------------- /Poland.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Greetings From Poland 8 | 35 | 36 | 37 | 38 |
39 |

Thank you Ninja!

40 | 41 | 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # git-playlist 2 | Playground for the Net Ninja Git / GitHub tutorials on YouTube 3 | 4 | TheNetNinja Youtube channel link : https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg 5 | -------------------------------------------------------------------------------- /SriLanka.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message from SriLanka 6 | 7 | 8 |

Hey Net Ninja! Thanks very much for helping me to understand git behaviour and from your Node.js tutorial i learn lot thanks man.. keep it up

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Thanks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Thank you 6 | 7 |

I learnt all the github concepts through your tutorial,thanks a lot.

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Thanks.js: -------------------------------------------------------------------------------- 1 | const string = 2 | 'Thanks for your amazing tutorial. Looking forward to many more videos. And following your react redux playlist right now. :)'; 3 | console.log(string); 4 | -------------------------------------------------------------------------------- /aloha.js: -------------------------------------------------------------------------------- 1 | console.log('Aloha, from Hawaii'); 2 | console.log("Your website is awesome"); 3 | -------------------------------------------------------------------------------- /assets/.picasa.ini: -------------------------------------------------------------------------------- 1 | [TY_legend.jpg] 2 | backuphash=44790 3 | -------------------------------------------------------------------------------- /assets/.picasaoriginals/.picasa.ini: -------------------------------------------------------------------------------- 1 | [TY_legend.jpg] 2 | filters=crop64=1,30ec579cffffffff; 3 | crop=rect64(30ec579cffffffff) 4 | moddate=d95f60d5591ad401 5 | width=900 6 | height=900 7 | textactive=0 8 | -------------------------------------------------------------------------------- /assets/.picasaoriginals/TY_legend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/assets/.picasaoriginals/TY_legend.jpg -------------------------------------------------------------------------------- /assets/Net-Ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/assets/Net-Ninja.png -------------------------------------------------------------------------------- /assets/TY_legend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/assets/TY_legend.jpg -------------------------------------------------------------------------------- /assets/swayambhunath_monastery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/assets/swayambhunath_monastery.jpg -------------------------------------------------------------------------------- /assets/thanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/assets/thanks.png -------------------------------------------------------------------------------- /awesome.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message 6 | 7 | 8 |

Shaun, kudos to you. I have been following your series in youtube the past few weeks. You are a great instructor an communicator.

9 |

Thanks for sharing. We need more of you in this world. Teach at no charge! - Best of luck

10 | 11 | -------------------------------------------------------------------------------- /brazil.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Olá! 6 | 7 | 8 |

Greetings from Brazil! :)

9 |

Thanks for the videos and the playground repo

10 | 11 | -------------------------------------------------------------------------------- /cheeselandUSA.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Thanks From America's Dairyland! 6 | 7 | 8 |

Hey Shaun! Awesome Git tutorial!

9 |

Hope many developers also see your video. I'm new at using git. Thank you so much! Bless you!

10 | 11 | > -------------------------------------------------------------------------------- /chile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ¡HOlA MUNDO CRUEL! 6 | 7 | 8 |

¿Quién es Chile?

9 |

¡COLO-COLO!

10 |

English is better than chinese man!!!

11 |

Cihan Ukan

12 |

You Know What??? Shawn is AWESOME!!!!!!!!!!!Yeahhhhhhhhhhhhhh

13 |

i agree with you 100%%% !!!!!

14 | 15 | 16 | -------------------------------------------------------------------------------- /gitCommands_kapil.txt: -------------------------------------------------------------------------------- 1 | 1. git init 2 | 2. git status 3 | 3. git add -a 4 | 4. git commit -m "message for commit" 5 | 5. To create Git hub repository: https://github.com/. 6 | 6. Push code to this repository: push repo URL. 7 | 7. Adding file to git and commit it in one command: git commit -a -m "message" 8 | 8. Add a handle to your repo for doing push and fetch 9 | a. Git remote add handlename urlOfRepo 10 | b. Git remote -v 11 | c. Git push handleName branch. 12 | 9. Git branch 13 | 10. Git branch newFeature 14 | 11. Git checkout newfeature 15 | 12. Git -rm --cached index.html 16 | 13. Git log 17 | 14. Git log --oneline. 18 | 15. Git Checkout 19 | 16. Get revert commit no 20 | 17. Git reset commit no --hard 21 | 18. Shift+: wq 22 | 19. Git branch feature-1 23 | 20. To see all branches: git branch -a 24 | 21. Git checkout feature-1 to change branch form master to feature-1 25 | 22. To delete branch- git branch -D feature-1.// use D if branch is not merged and use d if its merged used d 26 | 23. To create a branch and checkout at the same time - git checkout -b feature-c 27 | 24. Git push githubUrl master . 28 | 25. To add alias for gitHub Url's- git remote add origin githubURL 29 | a. Git push origin master 30 | 26. Git clone gitHubUrl 31 | 27. :git remote -v 32 | 28. For daily work: 33 | a. Git pull origin master 34 | b. Check out new branch: git checkout -b feature-x 35 | c. Git add . 36 | d. Git commit -m "message"// here you don’t to wana to merge your branch with master locally and push to origin this is wrong way of working 37 | e. Instead what you will do push this branch to github and after review you will merge this code. 38 | i. Git push origin feature-x 39 | ii. Create a compare and pull request : leave comments 40 | iii. Create pull request 41 | iv. Assign reviewer 42 | v. Review will review you code and will do merge 43 | You can delete branch later on if you want 44 | -------------------------------------------------------------------------------- /gradient.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Gradient 5 | 6 | 7 | 8 | 9 |
10 | 11 |
12 | 13 | -------------------------------------------------------------------------------- /hello.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); -------------------------------------------------------------------------------- /himalayas.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | धन्यबाद। 6 | 15 | 16 | 17 |
18 | swayambhunath 19 |

20 |
21 | 22 | 23 | 32 | 33 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | The NetNinja 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /india.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Love from India 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /italy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message from Italy 6 | 7 | 8 |

Hey shaun! Thanks very much for helping me to understand forking behaviour!

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /legend.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Thank you 6 | 7 | 8 | 9 |
10 |

Thank you so much :) :)

11 | 12 | 13 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | alert('hi'); -------------------------------------------------------------------------------- /morocco.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Morocco 9 | 41 | 42 | 43 | 44 |

Thanks Netninja

45 |

Thanks for all of your awesome tutorials

46 | I hope you made a tutorial about Electron 47 |

KA from Morocco

48 | 49 | 50 | -------------------------------------------------------------------------------- /nederland.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message from The Netherlands 6 | 7 | 8 |

Hi Shaun! Thank you very much for all playlists especially the git tutorial playlist.

9 | 10 | 11 | -------------------------------------------------------------------------------- /netninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/netninja.png -------------------------------------------------------------------------------- /nigeria.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | From Nigeria 8 | 47 | 48 | 49 | 50 |

FROM NIGERIA

51 | 52 |

Thank tou very much from

53 |
54 | 55 |
56 | 57 |
58 | 59 | 60 | -------------------------------------------------------------------------------- /ninja.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Git The Net Ninja! 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 21 |
22 | practice forking 23 | 24 |
25 |
Look at the developer console!
26 |
Fork this project on GitHub: Git Repository
27 |
Happy coding Ninjas!
28 |
29 | 30 |
31 |
32 | Thank you you for the tutorial! It helped a bunch! 33 |
34 |

God job Shaun

35 |

Thank you Shaun!!

36 | 37 | 38 |
39 |

THANKS A LOT FOR YOUR AWESOME TUTORIALS

40 |

Hey Shaun..this is Sarnava from India. I am a 2nd year electronics engineering undergrad doing my studies in National Institute pf Technology, Durgapur. I am new to learning GitHub and I heard about your tutorials from one of my seniors. I am also learning nodejs from your tutorials. can you advise me one thing?? I know bootstrap, js, jquery and tweenmax js in frontend..do you thing learning react will add something unique in my cv??

41 |
42 | 43 |

Thank you Shaun!!

44 |

Nice, beautifully explained, beautiful exercise, love it!!!

45 | 46 | 47 |

Hello I am Mandar Sant from INDIA

48 |

Hey Shaun, Great Work

49 |

Thank you shaun, you're the best :D, peace from Algeria x))

50 |

Great work :)

51 |

Hey Shaun, thank you for the Git & GitHub Tutorials! Best wishes, Alex.

52 |

Thank you Shaun. Very helpful videos!! :)

53 |

Your videos helped me a lot

54 |

Your crap website is now awesome

55 | 56 |

It's my paragraph

57 |

Hey your GitHub tutorials are awesome

58 |

Right now I am learning about how to fork.

59 | 60 | 61 | -------------------------------------------------------------------------------- /ninja.js: -------------------------------------------------------------------------------- 1 | console.log("hi this is nice tutorial...."); 2 | console.log('do your worst'); 3 | console.log( 'first! great tutorial!' ); 4 | console.log( "I'll be a hardcore programmer!!! Thanks Shaun! From PeterAMD" ); 5 | console.log("Amazing tutorial! Love from Turkey,AnılSansak was here"); 6 | console.log('Indeed. Great tutorial as always! Thanks Shaun, from Pieter.'); 7 | console.log("Thanks for NetNinja's tutorials! Thanks from BaalWu in Taiwan"); 8 | console.log("Thanks Shaun for the tutorials - Navaneeth") 9 | console.log("I want to say thank you to all my fans! JK") 10 | console.log("Very good videos. Good job! :) ~Christoph") 11 | console.log("The net ninjs, Shaun, the best shinobi, woo"); 12 | console.log("What's up guys, this is my first pull request! Thanks Shaun!"); 13 | console.log("Great tutorial, Thanks a lot! msamancioglu"); 14 | console.log("Hey Shaun! I really like the tutorial, thanks alot. anthonylan"); 15 | console.log("Thank you"); 16 | 17 | function Track(song, artist, album, year, starReview){ 18 | this.song = song; 19 | this. artist = artist; 20 | this.album = album; 21 | this.year = year; 22 | this.starReview = starReview; 23 | } 24 | 25 | // Just add your favorite track of all time to the list 26 | 27 | const track1 = new Track("Redbone", "Childish Gambino", "Awaken, My Love!", "2017", 5); 28 | const track2 = new Track("Do I Wanna Know", "Arctic Monkeys", "AM", "2013", 3); 29 | const track3 = new Track("The Less I Know The Better", "Tame Impala", "Currents", "2015", 10); 30 | const track4 = new Track("Blue Monday", "New Order", "NOT ON Power, Corruption & Lies", "1983", 7); 31 | 32 | const Tracks = [ 33 | track1, 34 | track2, 35 | track3, 36 | track4 37 | ]; 38 | 39 | Tracks.map(track => { 40 | console.log("----------------------"); 41 | console.log("\nSong: " + track.song); 42 | console.log("\nArtist: " + track.artist); 43 | console.log("\nAlbum: " + track.album + ", Year: " + track.year); 44 | console.log("\nStar rating: " + track.starReview); 45 | console.log("----------------------"); 46 | }); 47 | 48 | // Ninjas are cool and awesome! 49 | 50 | console.log('%cDo your worst!\n', 'background: red; color: white; display: block; padding: 3px;'); 51 | console.log('%cFork it on GitHub: https://github.com/iamshaunjp/git-playlist.git', 'background: #0057A0; color: white; display: block; padding: 3px;'); 52 | console.log(`%cThis is the best youtube channel` , 'background-color : blue; color : white;'); 53 | 54 | function thanks(){ 55 | var div = document.getElementById('div01'); 56 | if (div.style.display == "none") 57 | {div.style.display = "block"} 58 | else {div.style.display = "none"}; 59 | } 60 | button01.addEventListener('click', thanks); 61 | -------------------------------------------------------------------------------- /ninjaaaa.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Best teacher in the world 8 | 9 | 10 |
I come from Taiwan(台灣)
11 |

Apperciate all you effort, I use your tutorial to learn website and try to find a job!!!

12 | 13 | 14 | -------------------------------------------------------------------------------- /niteshcontribution.html: -------------------------------------------------------------------------------- 1 | thanks for the videos . It was really helpful . 2 | -------------------------------------------------------------------------------- /notes/Notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamshaunjp/git-playlist/39686d9da8a2628d6b699a78c352d4a36747699a/notes/Notes.docx -------------------------------------------------------------------------------- /philippines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message 6 | 7 | 8 |

Hey shaun! I just want to say that you are the best in tutoring in Git!

9 |

Hope many developers also see your video. I'm new at using git. Thank you so much! Bless you!

10 | 11 | 12 | -------------------------------------------------------------------------------- /srilanka.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello NINJA 6 | 7 | 8 |

Tada um also contributing!!!

9 | 10 | 11 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | #hello__intro { 4 | background: red; 5 | padding: 39px; 6 | margin: 170px; 7 | border: 1px solid powderblue; 8 | } 9 | 10 | .heading__tertiary { 11 | color: chocolate; 12 | font-size: 28px; 13 | } 14 | 15 | h3{ 16 | 17 | color: blue; 18 | font-family: verdana; 19 | font-size: 300%; 20 | } 21 | 22 | h1{ 23 | color: red; 24 | } 25 | 26 | .grad { 27 | height: 500px; 28 | width: 100%; 29 | background: linear-gradient(to right, red, orange, green, cyan, blue, indigo, violet); 30 | } 31 | -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My fork test 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /thanks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | THanKs ShAuN 8 | 9 | 42 | 43 | 44 | 45 |
46 |
NET NINJA
47 | 48 |
49 | 52 |
53 |

Thanks for the tutorials, it really helped my skills, I have learnt alot from you. Thank yo, God Bless.

54 | Balogun Kayode, Lagos Nigeria 55 |
56 |
57 |
58 | 59 | 60 | 73 | 74 | -------------------------------------------------------------------------------- /thanks_a_lot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Thank You 6 | 7 | 8 |

Thanks a lot

9 |

I have completed watching all of your Github videos and they are hands down the best. 10 | I am really glad I found them and thanks a lot for your wonderful videos.

11 |

Love from India.
-M. Jitesh

12 | 13 | 14 | -------------------------------------------------------------------------------- /thanku.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /thankyou.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Thankyou 5 | 6 | 7 |

Thanks for the tutorials

8 | 9 | -------------------------------------------------------------------------------- /uefa.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UEFA 2018 6 | 7 | 8 |

Liverpool or Barcelona?.

9 |

Salah vs Messi

10 | 11 | -------------------------------------------------------------------------------- /uganda.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Starter Template for Bootstrap 14 | 15 | 16 | 17 | 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 54 | 55 |
56 | 57 |
58 |

Awesome Job

59 |

Thanks Shaun for the awesome work you do by making these free tutorials. Emmanuel From Uganda

60 |
61 | 62 |
63 | 64 | 65 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /usa.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message 6 | 7 | 8 |

Great video series on git and github.

9 |

Just what we needed. Thanks!

10 | 11 | 12 | -------------------------------------------------------------------------------- /view/deafult.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 73 |
-------------------------------------------------------------------------------- /view/index.html: -------------------------------------------------------------------------------- 1 | 303 | 304 | 305 | 306 | 307 | 308 |

Test

309 | 310 | 311 |
312 | 313 | 314 |
315 | 316 | 317 | 318 |
--------------------------------------------------------------------------------