Skip to content
Snippets Groups Projects
Commit c464af91 authored by Mark HOEBEKE's avatar Mark HOEBEKE
Browse files

Added git push to CLI basics.

parent c6e667cf
No related branches found
No related tags found
1 merge request!5Added contents to Git CLI Basics with exercices.
...@@ -92,6 +92,32 @@ The following screenshot shows the result of a commit on our pet project after t ...@@ -92,6 +92,32 @@ The following screenshot shows the result of a commit on our pet project after t
- The last lines of the commit show a summary of what has been actually committed. - The last lines of the commit show a summary of what has been actually committed.
## Propagating local changes to the remote repository
To update a remote repository with all the commits that have been made locally, the `git push` [[command](https://git-scm.com/docs/git-restore)] is used. It needs no arguments or options, because it "knows" which part of the history is local and needs to be propagated to the remote repository.
To know what will be propagated, you can use `git status` as in the following example:
![status_before_push.png](./media/status_before_push.png)
It shows that the local repository is one commit *ahead* of the remote repository. Meaning, that one local commit (the latest) will be propagated to the remote repository.
The actual output of `git push` looks like:
![git_push.png](./media/git_push.png)
Notice the last line, with two commit ids (the one of the latest commit when cloning the repository, and the latest local commit id), and the names of the branches involved in the commit.
On GitLab, the project welcome page displays information about the latest commit that has been pushed to the repository.
![gitlab_after_push.png](./media/gitlab_after_push.png)
......
gitcli-basics/media/git_push.png

57.8 KiB

gitcli-basics/media/gitlab_after_push.png

118 KiB

gitcli-basics/media/status_before_push.png

29.9 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment