Initial push to the remote repository using Git
This article outlines the steps required to push local changes to a remote repository using Git. A repository is a virtual storage for a project that allows us to keep different versions of our code that we can access at any given time.
Since development is done locally, you need to publish your changes to a remote repository.
This article is ideal for developers who use a server as a remote repository and for those who host their repositories on GitHub.
Initial push to the remote repository using Git
To do the initial push, we will start a project from scratch. First, we will set up a remote repository on the server side.
On the command line, we will run the following command.
$ mkdir my-project.git
This command will create a new project on our server called my-project.git . You can give your project any name you want.
We can now initialize an empty Git repository. Use the cd command to navigate to the project you created, as shown in the following image.
$ cd my-project.git
To initialize the repo, run:
$ git --bare init
The command above will initialize an empty repo in our folder. If you intend to make this a public repository, you can add the --shared flag.
It will set the required permissions. That’s all for the server side; let’s move on to the client side.
On our local machine, we will create a new project called my-project. On the command line, we will run:
$ mkdir my-project
After creation, we will open the project using the cd command as shown in the following image.
$ cd my-project
To initialize the repository on the client side, run:
$ git init
At this point, we have set up our remote and local repositories. Git does not allow us to push a branch that does not have any commits.
Before pushing, we have to add the files to our project and commit the changes.
Let's create a README.md file and add it to the index for commit.
$ touch README.md
This will create a file in our repository. If you run the git status command, the file will appear under the Untracked category.
Run the following command to add it to the index.
$ git add README.md
If you have a lot of untracked files, you can run git add-with-index with . to instruct Git to add all of them to the index.
$ git add .
We can now commit and push our changes. To commit, we will run the command below.
$ git commit -m "Initial Commit"
You can run the git log command to confirm the commit. Before we push our changes, we must link our local repository to our remote repository.
This can be done with git remote add
the command. We will run:
git remote add origin youruser@yourserver.com:/path/to/my-project.git
Please note that different hosting servers have different formats and patterns to add origins.
We can now push to the remote.
git push --set-upstream origin master
This command will push our changes to the remote repository and set our local master branch to track the remote master branch. This way, every time we need to publish local changes, we can run git push without the origin master.
What if you use GitHub to host your remote repository?
It's pretty straightforward. Assuming you've already created an empty repository on your GitHub account, the process for pushing changes is similar to what we saw above.
You will need the repository URL for your GitHub repository.
Here is an example.
We will first link our local repository with the GitHub repository using the git remote add command as shown below.
$ git remote add https://github.com/youruser/my-project.git
The above commands are for users using HTTPS authentication. For SSH, you would run:
$ git remote add git@github.com:youruser/my-project.git
We can then push the changes to the remote repository as shown below.
$ git push --set-upstream origin master
At this point we have successfully published changes to the remote repository for the first time.
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
Git force pull
Publish Date:2025/03/29 Views:165 Category:Git
-
In this tutorial, we will learn how to force pull changes from a remote repository in Git. Sometimes, we may need to discard local modifications and replace them with updates from a remote repository in a collaborative development environme
Git pulls Master into the branch
Publish Date:2025/03/29 Views:193 Category:Git
-
When developing software using the Git tool, you can create different branches for different features. When you make changes to master, these changes are not automatically added to other branches. This article will explain how to pull all t
Installing Git in Cygwin
Publish Date:2025/03/29 Views:116 Category:Git
-
Git is considered an active, innovative and highly recommended distributed version control system with a fantastic standalone command line while providing us with advanced features and complete internal methods. What is Cygwin Cygwin is con
Displaying remote repository information in Git
Publish Date:2025/03/29 Views:139 Category:Git
-
This tutorial is about displaying information about remote repositories in Git. We use Git, a version control system, to track changes made to files in our project directories through Git repositories. Usually, local repositories are tracke
Deleting a remote repository in Git
Publish Date:2025/03/29 Views:130 Category:Git
-
When we commit the wrong data to the origin, push it to the origin and merge it to the current branch. But later we realize that we don't need to do the merge in that repo, so the question here is how to undo or revert the merge commit that
Setting up a Git remote repository
Publish Date:2025/03/29 Views:78 Category:Git
-
This article will explain how to add or delete remote repositories. A remote repository is a project hosted somewhere, such as Github/Gitlab. Adding a remote repository allows us to use a short name (alias) to execute commands instead of ty
.git Directory Explanation
Publish Date:2025/03/29 Views:65 Category:Git
-
In this article, we'll introduce Git folders .git . We'll cover why Git creates folders and what they contain. .git What are folders in Git ? Git is a widely used version control system. Git repositories store the changes you make in your p
Cherry-Pick Merge Commits in Git
Publish Date:2025/03/29 Views:105 Category:Git
-
When multiple developers from the same team are working on a project, regardless of the complexity of the project, handling and managing changes between Git branches becomes very difficult. Sometimes, we need to merge some specific commits
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