githubschool / fly

Let's learn about Git and GitHub
https://githubschool.github.io/fly/
MIT License
0 stars 0 forks source link

Parking Lot #7

Open githubteacher opened 3 years ago

githubteacher commented 3 years ago

Post any questions you may have here during the training.

ericalloyd commented 3 years ago

🎥 Recordings will be posted here

Day 1 - Monday, April 12, 2021

Zoom Link: https://github.zoom.us/rec/share/rgPhYV1YCMDSlir7y0VgRUPOM1S_bfb1aoXRlluOETIGNrdhOw4e0oTu2TvPHslr.fuQ1X5FIAIc_4EcZ

Passcode: Ci3+NJTx

Day 2 - Tuesday, April 13, 2021

Zoom link: https://github.zoom.us/rec/share/kaUmWPz6vcTrCJe0YaD_zHFLcPq7Y3OgM-I9accWLUs5D0UthOyB7GbDgHZffv4.q8cOxonc5qBoIP1L

Passcode: #?7gq$$2

ericalloyd commented 3 years ago

Questions:

ericalloyd commented 3 years ago

What does depth mean in relation to cloning?

A: By default, when you clone, you are also copying the entire history of commits along with the repository. You can limit the history or "depth" of commits by using the depth option:

git clone -–depth [depth] [remote-url]

Ex: --depth 1 will limit the commit history to the most recent commit:

> git clone --depth 1 https://github.com/githubschool/fly.git
ericalloyd commented 3 years ago

On Day 2, we'll start by updating our local repository history, and then move on to merge conflicts!

ericalloyd commented 3 years ago

@marc-denman Recordings posted! Thanks again, great team! 🎉

marc-denman commented 3 years ago

@ericalloyd - Great, thanks so much. Really enjoyed the sessions with you and many thanks to your help for our team members in each of their learning paths. Take care!