Git authentication
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, follow these steps.
- Create a new directory for the project
- Enter the new directory
-
Enter
git init
Create a new Git repository. - Create a file in the new directory
-
In the directory, enter
git add .
add all files. -
Enter
git commit -m "First Commit"
to capture changes made to the Git repository.
Create a local repository for an existing project
To create a local repository for an existing project, follow these steps.
- Enter the project directory
-
Enter
git init
to initialize the project as a Git repository -
Enter
git add .
Add all files -
Type
git commit -m "First Commit"
to fetch the changes made to the Git repository.
Connecting your local repository to GitHub
After you have set up your local repository, the following instructions provide guidance on connecting to a remote repository on GitHub.
- Go to GitHub
- Log in to your account
- Create a new repository and copy the repository URL.
-
Type the following command to connect your local git repository to GitHub.
$ git remote add origin https://github.com/user/repo.git
git remote add origin https://github.com/user/repo.git
You will be asked to authenticate every time you push. If双重身份验证
(2FA) is enabled, you will need to use个人访问令牌
(PAT) instead of a password, as shown below. Instead, you can usegit remote add origin git@github.com:user/repo.git
to avoid authenticating for every git operation you perform.$ git push -u origin master
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.
Related Articles
Reverting local changes to a previous state in Git
Publish Date:2025/03/28 Views:118 Category:Git
-
Suppose Mario is assigned a task and is about to complete it, but the client changes their requirements and asks Mario to stop working on the previously assigned task, what would be the perfect solution to this dilemma? In this article, you
Adding files in Git
Publish Date:2025/03/27 Views:75 Category:Git
-
This article will discuss different ways to add files to our repository on Git. In Git, use git add the command to add all files We can git add add all the files without exception using the command as shown below. git add -A -A The -p param
Different ways to add files to staging with Git
Publish Date:2025/03/27 Views:199 Category:Git
-
While the command git add is probably the most commonly used command for adding files to your stash, other flags may come in handy depending on the situation. This article takes a deep dive into git add the flags you can use with the comman
Git add folder
Publish Date:2025/03/27 Views:100 Category:Git
-
git add Used to add specific folders and files. This tutorial will handle it in a modern way git add folder . git add Add all or specific folders and files to staging in Git using Use the following syntax to add files: git add file Use the
Recursively add files and folders in Git
Publish Date:2025/03/27 Views:137 Category:Git
-
Sometimes, we come across a situation where we have to adjust some files, folders, and subfolders that already exist in Git. A part of a nested folder system has to be added remotely to Git. This article will discuss how to use commands to
Undoing rm in Git
Publish Date:2025/03/27 Views:80 Category:Git
-
In Git, the term rm is git remove an alias for the command. So it is used to remove a single file or a bunch of files from the repository. git rm The main functionality of in Git is to remove tracked files using Git index. However, git rm i
Revert a file to a previous commit in Git
Publish Date:2025/03/27 Views:171 Category:Git
-
Git is a version control system. We use it to track changes made to files in a project directory. In a collaborative development environment, many team members often work on the same files and make changes to them. We often face a situation
Find deleted files in the commit history of a Git project
Publish Date:2025/03/27 Views:68 Category:Git
-
This article discusses finding deleted files in the commit history of a project. This is handy when you want to recover a file you deleted in a project. Without further ado, let’s jump right in. Steps to find and restore deleted files in
Tracking command history in Git
Publish Date:2025/03/27 Views:142 Category:Git
-
Git is one of those version control systems that keeps a record of the changes made by its developers. Through these records, we can track various earlier commits, which teammates made what changes at what time, understand the bugs that wer