Git Version Control (Basic to Advanced)

1 / 3

Git - Version Control Part 1






In this video, we are covering the following topics:
- Why do we need version control?
- What is Git?
- Brief history of Git.
- Installation of Git.
- Generating SSH keys in Windows.
- Advantages and workflow of Git.
- Setting up environment for working with Git.
- Setting up Git repository.

Download the slides

INSTRUCTIONS

Quick reference for git and gh cli can be found here: https://github.com/cloudxlab/git_quick_notes.git


Please login to comment

74 Comments

This comment has been removed.

This comment has been removed.

Hi, I have got the SSH key and i have updated it in UI

As per the slide, I have to test if SSH is setup correctly by using: git clone git@github.com:singh-ashok25/webserver.git

But when I tried it, I am getting access denied error

$ ?git clone git@github.com:singh-ashok25/webserver.git
Cloning into 'webserver'...
The authenticity of host 'github.com (20.207.73.82)' can't be established.
ED25519 key fingerprint is SHA256:+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com' (ED25519) to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Kindly guide on next steps

  Upvote    Share

As I am new to this concept, I am following the instructions from this video. After downlading it on windows and installing it, when I open the git bash, I have different user id. Should I use the webconsole from cloudx lab to generate the SSH or gitbash which is downloaded on my local computer? 

  Upvote    Share

Ignore above questions. I was able to clone the repo.

  Upvote    Share

$ git clone git@github.com:manojkmgit/myapp2.git
Cloning into 'myapp2'...
ERROR: Repository not found.

  Upvote    Share

The error message "Repository not found" typically indicates that the Git repository you are trying to clone does not exist or you don't have the necessary permissions to access it. Here are a few steps to troubleshoot this issue:

1. Verify Repository URL: Check the correctness of the repository URL, ensuring there are no typos in the username and repository name.

2. Repository Access: Ensure you have the necessary permissions (e.g., collaborator access) to clone the repository, especially if it's a private repository.

3. SSH Key Configuration: If using SSH for authentication, confirm that your SSH key is correctly set up and associated with your GitHub account.

4. Repository Existence: Check if the repository actually exists under the specified GitHub account by visiting its URL in a web browser.

5. User Permissions: Make sure you are logged in with the correct GitHub account that has access to the repository.

  Upvote    Share

Getting this error

$ git clone git@github.com:singh-ashok25/webserver.git
Cloning into 'webserver'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

  Upvote    Share

Hi Mihir,

To resolve the "Permission denied (publickey)" error when cloning a Git repository via SSH, first ensure your SSH key is properly configured and added to your GitHub account. Generate an SSH key if needed and ensure correct file permissions (chmod 600 ~/.ssh/id_rsa). Test your SSH connection to GitHub (ssh -T git@github.com) and verify repository access. If issues persist, debug the SSH connection (ssh -vT git@github.com) for more details. Alternatively, consider cloning using HTTPS (git clone https://github.com/singh-ashok25/webserver.git) using your GitHub username and password.

  Upvote    Share

Not able to understand functionality of any of below commands. Please explain.

  Upvote    Share

What is git branch? what is git checkout? what is git checkout master? 

  Upvote    Share

Let's break down each Git command:

git branch:

This command is used to manage branches in Git.

Example: git branch feature_branch

Here, you're creating a new branch called "feature_branch."

git checkout:

This command is used to switch between branches in Git.

Example: git checkout feature_branch

Here, you're moving from your current branch to the "feature_branch." You'll start working on and making changes in this branch.

git checkout master:

This is a specific use of the git checkout command.

Example: git checkout master

Here, you're switching back to the "master" branch. This is useful when you want to go back to the main development line or switch between different branches.

  Upvote    Share

What is master? Please elaborate.

  Upvote    Share

'Master' is the default branch in Git. It's often considered the main branch where the primary development takes place. It represents the most stable version of the project.

  Upvote    Share

What is branch?

  Upvote    Share

In the context of version control systems like Git, a branch is like a separate line of development that allows you to work on a feature, bug fix, or any change without affecting the main or other branches. Let's break it down:

Parallel Lines:

Think of the main project as the main timeline. When you create a branch, it's like creating a parallel timeline. The main project and your branch can evolve independently.

Isolated Work:

Each branch is its own space to make changes. This means you can experiment, add new features, or fix issues without interfering with what's happening in the main project or other branches.

Safe Testing:

Creating a branch is like setting up a safe testing ground. If your changes work well, you can merge them back into the main project. If not, it's okay because your changes haven't affected the main project yet.

Multiple Tasks:

Multiple branches can exist simultaneously. This allows different team members to work on different features or fixes without stepping on each other's toes.

Version History:

Each branch maintains its own version history. This history shows the changes made to the project on that specific branch.

Merge Points:

When you're done with the changes in a branch, you can merge it back into the main project or another branch. This combines the changes and integrates your work with the rest of the project.

In summary, a branch in Git is a way to work on your code in isolation, experiment with changes, and then integrate those changes back into the main project when you're ready. It helps in managing and organizing development tasks in a collaborative environment.

 1  Upvote    Share

Instructor is going too fast without explanation.

I am from SAP background and I have no clue about GIT. Can you please keep in mind that people from different backgrounds have subscribed to the course?

1. What is SSH?

2. What is SSH key?

3. Did not understand the key generation part

4. Did not understand cloning? 

5. What is hosted repository?

6. Why GIT need staging area? Why cannot we commit from working directory to GIT?

7. What is re-cloning?

8. What is work space? What is index? what is local repo? What is remote repo? Did not understand the whole diagram?

  Upvote    Share

Hi Viral,

I understand that diving into Git can be a bit overwhelming at first, especially if you're coming from a background in electrical engineering and have been working in SAP. Let's break down the points you mentioned:

1. What is SSH?

SSH (Secure Shell) is a cryptographic network protocol used to secure communication over an unsecured network.

Think of it like a secret tunnel between your computer and another computer (like a server or a website). This tunnel is secure because it's like having a lock and key that only you and the other computer know about.

When you use SSH, you're using this secure tunnel to talk to the other computer. It's a way for you to send and receive information without anyone else snooping around or messing with your stuff.

In the world of Git (a tool for managing and tracking changes in computer code), SSH is often used to securely connect your computer to a website (like GitHub) where your code is stored. It ensures that only you can access and update your code, keeping it safe and sound.

 

2. What is an SSH key?

An SSH key is like a virtual ID card for your computer that helps it securely talk to other computers, especially when using services like GitHub or GitLab.

Here's a simple breakdown:

Key Pair:

It comes in a pair: a public key and a private key. Think of them like a lock and key set.

Public Key:

This is the part you can freely share with others or with online services. It's like telling them, "Hey, this is my ID, and you can trust me because I have the matching private key."

Private Key:

This is the secret part that stays on your computer. It's like the actual key to the lock. You never share this with anyone.

Secure Communication:

When you connect your computer to a service (like GitHub) using SSH, your computer uses its private key to prove it's really you. The service checks this with your public key, and if they match, it lets your computer in.

In simpler terms, it's like having a special key that only your computer knows about, and you use it to securely access your online stuff, making sure it's really you and not someone else.

 

3. Did not understand the key generation part:

Key generation involves creating an SSH key pair. On your machine, you generate this pair using a tool like `ssh-keygen`. The private key stays on your machine, and you copy the public key to your Git hosting service.

  Upvote    Share

4. Did not understand cloning?

Cloning is like making a copy of something:

Imagine you have a cool project on your friend's computer, and you want to work on it too. Instead of asking your friend to send you all the files, you decide to clone the project.

Copying Everything:

Cloning is like copying the entire project, including all the files, folders, and the entire history of changes (like who did what and when).

Creating a Twin:

After cloning, you now have an identical twin of the project on your own computer. It's like having the same project in two different places.

Connection:

Your friend's project stays as it is, and your cloned project is now yours to play with. But, when you make changes in your cloned project, you can eventually share those changes back with your friend by pushing them to the original project.

In the Git world, when you clone a repository, you are essentially creating a local copy of a project from a remote location (like GitHub). It allows you to work on the project on your own machine and contribute changes back to the original if needed.

5. What is a hosted repository?

A hosted repository is like a safe and shared space on the internet where you can store and manage your projects, especially when using version control systems like Git. Let's break it down:

Storage Space:

It's like a virtual storage space provided by online platforms such as GitHub, GitLab, or Bitbucket.

Project Management:

Think of it as a place to keep your project's files, code, and all its history. These platforms help you organize and manage your project efficiently.

Collaboration Hub:

A hosted repository becomes a central hub for collaboration. Multiple people can work on the same project, and the hosting platform helps manage changes, merges, and updates.

Remote Access:

Since it's hosted online, you can access your repository from anywhere with an internet connection. This makes it convenient for collaboration and allows you to work on your project from different devices.

Version Control:

These platforms offer features for version control. You can track changes, see who made what modifications, and even revert to previous versions if needed.

In the context of Git, a hosted repository is where you upload (push) your code, and others can download (pull) it. It facilitates collaboration, backup, and version tracking for your projects.

6. Why does Git need a staging area? Why cannot we commit from the working directory to Git?

The staging area (or index) allows you to review and select specific changes before committing. This enables you to make intentional commits, separating what you want to include in each commit. Committing directly from the working directory might lead to unintentional or incomplete commits.

  Upvote    Share

7. What is re-cloning?

Re-cloning is the process of downloading a fresh copy of a Git repository. You might do this to start with the latest changes or if your local copy is corrupted. It essentially fetches the entire repository again.

8. What is a workspace? What is an index? What is the local repo? What is a remote repo? Did not understand the diagrams.   

- Workspace: Your local directory where you edit files.

- Index (Staging Area): A middle ground where you prepare changes before committing.

- Local Repo: Where Git stores the version history on your machine.

- Remote Repo: The repository hosted on a server, acting as a central point for collaboration.

  Upvote    Share

When i click to install git in my MAC, i get the above screen, what to do next. The presnter uses a screenshot which is old and hence as a learner for the 1st time, i face challenge to understand how to install GIT. Need a response quicky.  

 

  Upvote    Share

I found the session is not for beginners and I am list of issues in understanding the git concepts. How can I get additional support?

 

 1  Upvote    Share

Hi Rahul,

We understand that some users may encounter challenges while grasping Git concepts during the session. To provide you with the necessary support, we offer several options:

1. **Comments**: You can utilize the comments section itself to ask questions and seek clarification on any Git concepts that you find difficult to grasp. Our instructors and fellow learners are often active there and will be happy to assist you.

2. **Forum**: We maintain a dedicated forum where you can post your queries. It's a great place to engage in discussions, share your concerns, and receive guidance. You can access the forum at https://discuss.cloudxlab.com/.

3. **Direct Contact**: If you have specific, you can always reach out to our support team directly via email at reachus@cloudxlab.com. We'll do our best to address your concerns promptly and professionally.

Remember that learning Git can be challenging, especially for beginners, but seeking assistance and clarification is a crucial part of the learning process. Don't hesitate to reach out through any of the above channels, and we'll be here to support your understanding of concepts.

Happy Learning!

  Upvote    Share

while trying to download git this is what showed up

  Upvote    Share

Hi, 

Yeah, so you can install git on MacOS by using the commands listed there. You can visit https://git-scm.com/downloads to install it on other devices.

  Upvote    Share

The lecture was not structured properly. The speaker went on tangents multiple times. 

 3  Upvote    Share

Definetly not for absolute begineers , eventhough I had a bit knowledge, I was not able to go through this :( ... You should explain about What is Git? atleast with a realtime example, VCS with a Realtime example , Tutor shouldnt speak technical terms initially , they should be injected slowly explaining each and every term in deatl with exampls....No matter how fancy the teaching is, there woud be no use "Without examples".. Lastly, tutor was not at all Energetic :( ..Sorry though but it was a honest Review

  Upvote    Share

Hi Jagan,

We are so sorry you feel that way. We take your feedback seriously, and we will strive to improve our content based on your suggestions. But, we have already included real-time examples in the tutorial. In this tutorial, we have explained VCS and Git and told their real-world use cases and why they are used as this was an introduction to git and VCS. In the next tutorial, we have explained how it works using a real-time example of creating and cloning a repo, collaborating, etc. 

However, we understand that different learners have varying levels of familiarity with the subject matter, and we will make efforts to make the tutorial better. Thanks for your valuable feedback. Happy learning!!

  Upvote    Share

Thank you for responding , I am sorry though, I am not trying to be harsh....Tutor is experienced and from IIT but learners are not, hope you understand :)

  Upvote    Share

Hi Jagan,

We appreciate your understanding and assure you that we don't consider your feedback as being harsh. On the contrary, we highly value your input and believe that constructive feedback is crucial for our growth and improvement.

We completely understand that our tutor's expertise and experience may not always align with the knowledge level of all learners. It's a constant challenge to strike a balance between technical depth and accessibility, especially when catering to a diverse audience. However, we firmly believe that every learner deserves a supportive and engaging learning experience, regardless of their background or prior knowledge.

Your feedback serves as a reminder of the importance of bridging that gap effectively. We are grateful that you took the time to share your thoughts, as it helps us reassess our approach and strive for continuous improvement. It is through feedback from learners like you that we can create content that truly resonates and empowers.

We encourage you to keep providing feedback and engaging with our tutorials. Your perspective is invaluable, and your input contributes to making our platform better for all learners. Together, we can create an inclusive and inspiring learning environment that enables individuals to reach their full potential.

Thank you once again for your understanding and for being a part of our learning community. We look forward to serving you with improved content and ensuring a positive learning experience for everyone.

  Upvote    Share

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exist

 

 

why this ?

 

  Upvote    Share

Hi,

Please check the permission for your ssh keys. Also, check whether you have copied the public key stored in ~/.ssh/id_rsa.pub file correctly to the SSH keys in your github account. 

  Upvote    Share

how i check permission of ssh key ?? 

  Upvote    Share

You can check permissions using ls -la command and change them using chmod command

The .ssh directory permissions should be 700 (drwx------)

The public key (.pub file) permissions should be 644 (-rw-r--r--)

The private key (id_rsa) permissions should be 600 (-rw-------)

  Upvote    Share

one more doubt, whic git hub  i add this key? i mean in my github or ashok singh git hub?

and also .ssh folder doesnt contain any rsa key. the rsa_pub key generated in my home folder... so what can i do?

  Upvote    Share

fixed ... i enter in .ssh using cd command..and then generate key in that folder

 

  Upvote    Share

Version control part 1> After cloning..totally lost 

  Upvote    Share

i am not able to clone the repository

  Upvote    Share

What error are you getting?

  Upvote    Share

When i'm using the "more" command to generate the ss key then its showing "command not found "

  Upvote    Share

Hi to generate ssh keys, what shall we use windows CMD or git desktop CMD?

 

  Upvote    Share

It seems that course content is beign prepared with a though process that learner is having prior knowledge of the system where as at start of course it was mentioned that no prior knowledge required.

According to my personal experience it is very difficult to understand the content by seeing above video.

Big disappointment.

 2  Upvote    Share

Hi Navneet,
We have started from the very basics. We have started with version control first as it is the first concept to learn before starting git. We have then explained what is git and its several commands. For a better understanding, we have also provided lab. 

It would be much helpful if you can explain a bit more like in which concepts you were facing difficulties.

  Upvote    Share

The issue is module 5 should come beore module 4..I too felt a disconnect till I saw this other module.

 

Go thru that first and then the advance topics.

 

regds

  Upvote    Share

Hi Team, 

I am getting an error while i am trying to clone the Git. When i check , I am not able to find the singh-ashok25/webserver.git in git hub, there are 2 repos but no code inside them. Please help.

Regards,

Abhisek

 

  Upvote    Share

Hi,

It is not an empty repo. You can check that at: https://github.com/singh-ashok25/webserver.

What error are you getting?

  Upvote    Share

Hi Team,

I am getting the below error while i am trying to clone the Git 

Please help me sort the issue and provide me with the update

  Upvote    Share

Hi, Please check the permission for your ssh keys. Also, check whether you have copied the public key stored in ~/.ssh/id_rsa.pub file correctly to the SSH keys in your github account. 

 1  Upvote    Share

I am also getting same erorr. have copied the public key stored in ~/.ssh/id_rsa.pub file correctly to the SSH keys in my github account. but still geeting the same error message. Please help

  Upvote    Share

Hi,

Please check the permission for your ssh keys.

  Upvote    Share

How can I complete project if I do not have Cloudxlab access? also what all is mandatory to complete to have certificate? please guide, Cloudxlab has become very expensive.

  Upvote    Share

Hi, You need to have access to CloudxLab for completing the project.

One can use finish most of the course and complete the rest of assignments that need lab access in the end with our free lab trial- upon completion you will be certified for free.

Also, you need to complete the course 100% to have a certificate.

CloudxLab strives to make learning affordable to its learners, and for this reason, we have had a summer sale on from 1st of April where all of our self paced courses are completely free of cost, anybody can upskill themselves completely free of cost and be job-ready, there is no other e-learning platform out there that does it for free, please feel free to correct us if you know one. thank you.

  Upvote    Share

At 01:02:00 min, the more command is used to get content of key. However, this doesnt work in my case.  

$ more devops_lab1.pub
bash: more: command not found

I had to use the cat command instead, and it did the trick.

  Upvote    Share

Hi

Can you please share the screenshot of the error?

  Upvote    Share

This comment has been removed.

Hi, Can I get e response? or Can I get to speak to someone?

  Upvote    Share

It seems that the recording is quite old. I am not able to relate to some reference.. Even version of github is older.

Please sugggest. 

  Upvote    Share

There is no issue in using this version of git. The concepts will be same.

  Upvote    Share

I am facing below error as well. 

[pranavsri3896@cxln5 devops]$ git push -u origin main
Username for 'https://github.com': Pranav25K
Password for 'https://Pranav25K@github.com':
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: Authentication failed for 'https://github.com/Pranav25K/devopstest.git/'

  Upvote    Share

Please set up your ssh keys to push the branch. You can try this hands on to understand git - https://cloudxlab.com/assessment/playlist-intro/435/getting-started-with-git

  Upvote    Share

I am getting below error. 

[pranavsri3896@cxln5 .ssh]$ git clone git@github.com:singh-ashok25/webserver.git
Cloning into 'webserver'...
Warning: Permanently added the ECDSA host key for IP address '140.82.112.4' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

  Upvote    Share

Please use https url for cloning the repository without setting up ssh keys. You can choose either ssh url or https url of the repository. Click on the code button in Github to see these 2 urls. 

  Upvote    Share

I am getting below permission exception while clonning ->

$ git clone git@github.com:singh-ashok25/webserver.git
Cloning into 'webserver'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

  Upvote    Share

Below commands helped me to resolve this 

1) exec ssh-agent bash 

2) then eval ssh-agent -s 

3) then ssh-add ~/.ssh/id_rsa

 1  Upvote    Share

Hi Prasant ,

Kindly let us know if you are still facing the issue.

Regards

Kanchan

  Upvote    Share

Hello Sir,

Things are too fast and its very confusing as Linux and Windows is done in the same time specially from 59.09 minute. I could not follow most of it . Can you please upload a short video on how to install it in windows and explain the codes and their uses , not in a very fast manner as you said "we wont rush to anything" -  Regards kanchan

  Upvote    Share

Hi,

I checked the video. If you find it overwhelming, I would suggest you to watch the video at a lower speed. You can hear the explanation later once you have understood what is happening on the screen. Also, don't forget to follow the slides.

Thanks.

 1  Upvote    Share

Could the list of softwares & platform mention in first 15 mins of session be listed down in orders ? its confusing to newbies

 

  Upvote    Share

Hi,

Thank you for your feedback, we will definitely consider this when we are updating our courseware.

Thanks.

  Upvote    Share

we have 3 lab na ambari ,jupyter in which lab we can practice git ,docker related stuffs

 

  Upvote    Share

Sorry for the delay in response somehow in missed this comment, our webconsole or jupyter console can be used.

  Upvote    Share