Set the folder as a Git Repo and push it to the remote
This article shows you how to convert local folders into Git repositories and push them to a remote repository.
Git version control and GitHub will provide us with all the tools we need to get the job done. Without further ado, let's get into today's agenda.
Set the folder as a Git Repo and push it to the remote
The first step is to set up an empty remote repository. In this case, we decided to use GitHub.
If you're not sure how to set up your remote, follow these steps.
- Go to your GitHub account and navigate to the Repositories tab.
- Click New to create a new repository. Name your repository and click Create Repository.
Do not include the README.md file. Copy the link to the repository; we will need it in the next step.
Open Git Bash and cd into the directory where you want to create the Git repository and initialize the Git repository using the git init command.
Here is an example.
NOTE: If you are not using GitHub as your remote, use
git init --bare
the command.
Now that our directory has been converted to a Git working directory, we can stage all of our files for commit. Use the git add command to add all of our files and folders to the index.
Before we stage our files, let's take a quick look at our working directory.
$ git status
We can see that Git is not tracking the files and folders that exist. Let's add them to the index.
$ git add .
Let's check our indexes.
Our files are now being changed to commit. We can run the command below to commit the changes and enter a commit message.
$ git commit -m "Initial Commit"
Next, we link our local repository with the remote GitHub repository. Remember the link we copied; it comes into play here.
This is how you connect the two.
$ git remote add origin https://github.com/Wachira11ke/Git-Tutorials.git
This will allow us to push and fetch changes from the remote. We can git remote -v
confirm this by running the command.
Now we can push our changes to the remote repository. Since we are pushing for the first time, we will use the command with the -u flag git push
.
This will instruct Git to push our changes to the remote and set up our branch to track the remote branch.
$ git push -u origin master
The output is as follows:
What does set up to track mean?
When we set up a branch to track a remote branch, we can automatically push and pull without specifying the remote branch. You can use git remote -vv
to check your remote tracking branch.
We can convert a non-empty local directory into a Git repository and push the changes to the remote. If you do not plan to use GitHub as a remote server, be sure to use git init --bare
the command.
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
Adding files in Git
Publish Date:2025/03/27 Views:74 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:136 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:79 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:170 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:67 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:141 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
Using Git Rebase from the Command Line
Publish Date:2025/03/27 Views:130 Category:Git
-
This article will discuss using the git rebase command effectively . The git rebase command allows us to change a range of commits and modify the commit history in our repository. We can edit, reorder, or squash commits using the git rebase