diff --git a/2019/2019-10-03_basicGitTraining-SIU/slides/forks.md b/2019/2019-10-03_basicGitTraining-SIU/slides/forks.md index 6690f36ad1d3160f7fe8b0d12d42e589835edae3..f7572078b396c4858980c5e75140d86b19c0ecad 100644 --- a/2019/2019-10-03_basicGitTraining-SIU/slides/forks.md +++ b/2019/2019-10-03_basicGitTraining-SIU/slides/forks.md @@ -1,5 +1,6 @@ # What is a `fork`? +<br><br> <center><img src="slides/img/fork.jpg" class="as-is" height="500em"/></center> <!--http://www.cndajin.com/data/wls/246/22302193.jpg--> @@ -7,6 +8,7 @@ # Not really ... +<br><br> <center><img src="slides/img/fork-crossed.png" class="as-is" height="500em"/></center> @@ -23,6 +25,7 @@ - In other words, you have to work on your own <font color="red">**fork**</font>. +<br> <h2>How to get a fork?</h1> Browse to the original repository and click on the button `Fork`: @@ -52,7 +55,7 @@ $ cd basic-git-practice If you did not configure your SSH key, clone using HTTPS: ```bash -$ git clone https://github.com/userName/basic-git-practice.git basic-git-practice +$ git clone https://github.com/<yourName>/basic-git-practice.git ``` diff --git a/2019/2019-10-03_basicGitTraining-SIU/slides/syncFork.md b/2019/2019-10-03_basicGitTraining-SIU/slides/syncFork.md index ce26041e512e0e928043dce28de4b46de7f04fa5..95e12dbcad0e377ddc07608b3a8b9522948e99d7 100644 --- a/2019/2019-10-03_basicGitTraining-SIU/slides/syncFork.md +++ b/2019/2019-10-03_basicGitTraining-SIU/slides/syncFork.md @@ -18,7 +18,7 @@ $ git remote -v <div class="fragment"> -Fetch the changes from upstream (similar to pull) +Fetch (download) the changes from upstream (fetch = pull & merge) ```bash $ git fetch upstream ``` diff --git a/2019/2019-10-03_basicGitTraining-SIU/slides/what_is_git.md b/2019/2019-10-03_basicGitTraining-SIU/slides/what_is_git.md index 973cc0593ed0b3b993e870f74c9e0794301e278e..64f573d098d96a4348430dacf8cadcb4b12d301d 100644 --- a/2019/2019-10-03_basicGitTraining-SIU/slides/what_is_git.md +++ b/2019/2019-10-03_basicGitTraining-SIU/slides/what_is_git.md @@ -1,4 +1,4 @@ -# What is `git`? +# What is `git`? (i) <!--  --> @@ -14,7 +14,7 @@ Designed and implemented in 2005 by **Linus Torvalds** -# The inventor of `git` +# What is `git`? (ii) <div align="center"> <img src="slides/img/git_definition.png"> @@ -22,6 +22,7 @@ Designed and implemented in 2005 by **Linus Torvalds** `I'm an egotistical bastard, and I name all my projects after myself. First Linux, now git.` +<br> Linus Torvald (2007-06-14) @@ -29,12 +30,16 @@ Linus Torvald (2007-06-14) # What is the use of `git`? * No need to fully rewrite code; **reuse code** and **save time** + * Keep the changes you made over time (**history**) + * Allows you to **backtrack** (if necessary) and undo unwanted changes + * Easily **add contributions** of your collaborators to the main code base -note: +<br> +Other points: + +- git shall not be considered as a nuisance, but as a tool that should help to track and trace the code. -Other points to mention: -* git shall not be considered as a nuisance, but as a tool that should help to track and trace the code. -* git is not to track performance. Not using it shows exactly the opposite. +- git is not to track performance. Not using it shows exactly the opposite.