Documentation/content/git/clone-commit-via-cli.md

95 lines
3.7 KiB
Markdown
Raw Normal View History

2020-08-02 15:13:08 +00:00
---
eleventyNavigation:
key: CloneCommitviaCLI
title: Clone & Commit via CLI
parent: Git
order: 20
2020-08-02 15:13:08 +00:00
---
Clone, edit, commit, push and pull can be performed using Git directly from the command line, by using a Git client, or via the web interface. The former option is shown below. The latter option is detailed in the section [Clone & Commit via Web](/git/clone-commit-via-web).
The user in these examples is `knut` the polar bear and its repository is `examples`. The repository was created via the Codeberg website, including a `README.md` file.
## Clone
2020-10-16 14:37:34 +00:00
*Cloning* refers to the process of creating an identical copy of a repository to the local machine.
Clone with the Git command `clone` followed by the repo URL.
### HTTP
```shell
~$ git clone https://codeberg.org/knut/examples.git
Cloning into 'examples'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), 214 bytes | 1024 bytes/s, done.
```
### SSH
Before you are able to access Git repositories via SSH, you need to [add an SSH key to your account](/security/ssh-key).
> **Warning**
> Please make sure that before connecting to Codeberg via SSH,
> you have [verified Codeberg's SSH fingerprint](/security/ssh-fingerprint)!
If you have set up a passphrase, you will be asked for it.
```shell
~$ git clone git@codeberg.org:knut/examples.git
Enter passphrase for key '/home/knut/.ssh/id_rsa': ****
Cloning into 'examples'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
```
## Edit
Modify an existing file:
```shell
~$ cd examples
~/examples$ nano README.md
```
Here we use `nano`, but you can use any (text) editor you want.
## Commit
2020-10-16 14:37:34 +00:00
A *commit* is a record of the changes to the repository. This is like a snapshot of your edits.
A commit requires a commit message. For the example below, the message is "test". Keep in mind that "test" is not a very informative message, though. In the real world, make sure your commit message is informative, for you, your collaborators and anyone who might be interested in your work. Some advice on how to write a good commit message can be found on countless websites and blogs!
Command lines:
```shell
~/examples$ git commit -am 'test'
[main 10074d7] test
1 file changed, 2 insertions(+), 1 deletion(-)
```
Here's an explanation of the command flags used here:
- `-a`: automatically stages modified and deleted files for commits.
- `-m`: commit message
## Push
2020-10-16 14:37:34 +00:00
The last step is to synchronize (*push*) the modifications (commit) from the local repository to the remote one on Codeberg.
If you are using HTTP, you will be asked for your Codeberg username and password.
2021-06-16 12:16:59 +00:00
```shell
~/examples$ git push
Username for 'https://codeberg.org': knut
2020-10-16 14:37:34 +00:00
Password for 'https://knut@codeberg.org':
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 266 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
To https://codeberg.org/knut/examples.git
662e04e..10074d7 main -> main
```
## Pull
2020-10-16 14:37:34 +00:00
*Pulling* synchronizes the modifications (commit) from the remote repository on Codeberg to the local one.
Pulling is important when you work on different computers to make sure that all computers are on the same stage. It is even more important when you have collaborators on a project; they might change the files too, so you need to pull these modifications before you start working.
Because of that, it is recommended to pull before pushing.