JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Clone a private repository in Git

Author:JIYIK Last Updated:2025/03/29 Views:

This article will teach you how to use Git to clone a private repository hosted on Github.

Git is a version control system used to track changes in a project directory. Git uses commits for such purposes.

Github provides Internet hosting for software development and version control using Git. We can have both public and private Git repositories on Github.

We can clone a private repository hosted on Github using the correct credentials. We will now illustrate this with an example.


Clone a private repository in Git

To clone the public repository hosted on Github, we need to run git clonethe command as shown below.

$ git clone https://github.com/d2l-ai/berkeley-stat-157.git

This will clone the public repository into the new directory created. Additionally, it creates remote-tracking branches for each branch in the cloned repository.

It then creates and checks out an initial branch derived from the repository's currently active branch.

To clone a private repository hosted on Github, we need the correct credentials.

Typically, on Github, we can enable two-factor authentication. Two-factor authentication (2FA) provides an extra layer of security when logging into a website or application.

When two-factor authentication (2FA) is enabled, we must provide a username and password as well as another form of authentication that only we know or have access to.

Therefore, after enabling two-factor authentication (2FA), we must provide a personal access token (PAT) instead of a password when cloning a private repository using an HTTPS URL.

So, first, we need to create a Personal Access Token (PAT) on Github.

To create a Personal Access Token (PAT) on Github, we need to follow the steps given here, Creating a Personal Access Token.

After creating a personal access token (PAT), we can now git cloneclone a private repository using the command.

Assume that we have an account on Github with username johndoe. We must also create a Personal Access Token (PAT) for this account on Github.

We have a private repository on Github called My_Project. To clone the private repository on Github My_Project, we need to execute git clonethe command.

$ git clone https://github.com/johndoe/My_Project.git
Cloning into 'My_Project'...
Username for 'https://github.com': johndoe
Password for 'https://johndoe@github.com':

git cloneWhen prompted when executing the command, we have to enter our username johndoe. For the password, we need to enter our Personal Access Token (PAT) (which we created for this purpose) instead of our Github login password.

After verifying the credentials, git clonethe command will start fetching My_Projectthe Git repository and cloning it to our local system.

We can view our personal access token (PAT) at this location on Github, which is the Github Personal Access Token.

So, we learned how to use Git to clone a private repository hosted on Github.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Fatal: Refusing to Merge Unrelated Histories error in Git

Publish Date:2025/03/29 Views:123 Category:Git

This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi

Force pull overwrite in Git

Publish Date:2025/03/29 Views:119 Category:Git

Git is the most popular and demanded version control system today. The user interface of Git is similar to other version control systems. We can log in, clone the repository and make commits. However, Git has some significant differences th

Git authentication

Publish Date:2025/03/28 Views:163 Category:Git

This article demonstrates connecting a local repository to a remote repository on GitHub/Gitlab without getting 身份验证失败 error messages. Creating a local repository from scratch in Git To create a local repository from scratch, fo

Log graphs in Git

Publish Date:2025/03/28 Views:96 Category:Git

This article shows you how to use git log the command to graphically view the commit history in Git. Viewing log graphs in Git The command git log displays all the repository history at once snapshots(commits) . This command has a default f

Git refresh remote branch

Publish Date:2025/03/28 Views:94 Category:Git

Git is considered to be the most accurate and the most used software by developers in their projects and can be operated by multiple developers simultaneously. It provides many unique and quirky features to the developers which are very dif

Updating Git on Mac

Publish Date:2025/03/28 Views:182 Category:Git

When working on Git, you should stay updated with the latest version to get its latest features. This article will discuss how to install and update the latest version of Homebrew and Git on your personal computer. Homebrew on Mac Homebrew

Enable Git Tab Auto-Complete

Publish Date:2025/03/28 Views:110 Category:Git

This tutorial demonstrates how to enable git tab autocompletion. Importance of enabling Git Tab auto-completion When developers work with source code, they mostly prefer Git as it is a very familiar and convenient platform for developers th

Restoring a repository in Git

Publish Date:2025/03/28 Views:159 Category:Git

Sometimes while using Git, we come across a situation where we want to pull the latest changes from the remote repository and it conflicts with the existing modifications or files, then we have to push those files to the storage. Git provid

Undo Git Stash Pop conflicts

Publish Date:2025/03/28 Views:179 Category:Git

You can undo this using the solutions in this article git stash pop with merge conflicts . We show you how to abort an erroneous stash pop operation and return to a clean state. But we also demonstrated a git stash pop way to resolve the co

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial