Introduction to Git –- Fall 2020
A remote repository is a version of the project which can be hosted in your local machine, some network, or over the internet[1] where you and your collaborators can push or pull code modifications.
In addition to this, a remote is a way to backup your repository.
The command
$ git remote -v
origin git@bitbucket.org:arm2011/gitcourse.git (fetch)
origin git@bitbucket.org:arm2011/gitcourse.git (push)
displays the remotes that are already set up where you can fetch and pull changes. In this case there is only a single remoted called origin.
A remote repository can be added manually with the command
$ git remote add remote_name location
$ git remote add origin https://github.com/aliceuser2020/my-first-project.git
$ git remote -v
origin https://github.com/aliceuser2020/my-first-project.git (fetch)
origin https://github.com/aliceuser2020/my-first-project.git (push)
where the location of the remote can be an URL or the path if that is in your local machine.
Protocols:
Why do we need more than one remote?
digraph {
rankdir=TD
S [style=invis]
"Bob repo" [shape=diamond]
"Alice fork" [fixedsize=circle]
"Alice fork" -> "Alice local"
"Bob repo" -> "Alice fork"
"Alice local" -> "Bob repo" [style=dashed]
orig [label="origin" shape=plaintext fontcolor=red]
orig -> "Alice fork" [style=dashed color=red]
ups [label="upstream" shape=plaintext fontcolor=red]
ups -> "Bob repo" [style=dashed color=red]
}
$ git remote add upstream git@bitbucket.org:bob/gitcourse.git
$ git remote -v
origin https://github.com/aliceuser2020/my-first-project.git (fetch)
origin https://github.com/aliceuser2020/my-first-project.git (push)
upstream https://github.com/bobuser2020/my-first-project.git (fetch)
upstream https://github.com/bobuser2020/my-first-project.git (push)
One can push or fetch/pull to or from remotes by
$ git push remote_name branch_name
$ git fetch remote_name branch_name
$ git pull remote_name branch_name
In case you obtained the repository by cloning an existing one you will have the origin remote. You can do push/fetch/pull for this remote with
$ git push origin master
$ git fetch origin master
$ git pull origin master
or
$ git push
$ git fetch
$ git pull
because the remote origin and the master branch are configured for pushing and pulling by default upon cloning.
The command:
$ git pull
brings all the changes (branches) that are in the remote and tries to merge them with your local repo. The default behavior of git pull is in the $GIT_DIR/config file:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
In fact, git pull is a combination of two commands:
$ git fetch
$ git merge
The command
$ git push
will send all the changes (branches) to the remote by default. This can be changed by applying:
git config --global push.default matching(default), current, ...
$ git remote show origin
* remote origin
Fetch URL: git@bitbucket.org:arm2011/gitcourse.git
Push URL: git@bitbucket.org:arm2011/gitcourse.git
HEAD branch: master
Remote branches:
experiment tracked
feature tracked
less-salt tracked
master tracked
nested-feature tracked
Local branches configured for 'git pull':
feature merges with remote feature
master merges with remote master
nested-feature merges with remote nested-feature
Local refs configured for 'git push':
feature pushes to feature (fast-forwardable)
master pushes to master (up to date)
nested-feature pushes to nested-feature (up to date)
$ git remote rename initial_name new_name
$ git remote remove remote_name
A bare repository is a repository with no working directory.
$ mkdir bare.git && cd bare.git
$ git init --bare
$ git clone --bare location
Upon login into your GitHub account you will see the following option to create a new repository
Here, you can choose the type of repository that is appropriate to your needs (public/private), if you want to add README and .gitignore files and also the type of license for your project,
GitHub will suggest some steps that you can take for your brand-new repository:
$ ssh -T git@bitbucket.org
$ ssh -T git@github.com
In the following scenario, a developer, Bob, has its repo on GitHub. Another developer, Alice, finds it useful and forks it. After doing some changes, Alice push them and do a "pull request"
digraph {
rankdir=LR
S [style=invis]
"Bob repo" [shape=diamond]
"Alice fork" [fixedsize=circle]
"Alice fork" -> "Alice local"
"Bob repo" -> "Alice fork"
"Alice local" -> "Bob repo" [style=dashed]
orig [label="origin" shape=plaintext fontcolor=red]
orig -> "Alice fork" [style=dashed color=red]
ups [label="upstream" shape=plaintext fontcolor=red]
ups -> "Bob repo" [style=dashed color=red]
}
Then, Bob receives an email with the pull request information about Alice modifications. On the GitHub site he sees the request:
Because Bob find the changes from Alice useful and there are no conflicts he can merge them straight away,
If you find some issues in the files/code you can open an "Issue" on GitHub
You may also assign people to the issues that are more related to that topic.
In future commits you may refer to this issue by using the issue number, #2 in this case. This will allow you to track the evolution of the issue on GitHub.