An open API service indexing awesome lists of open source software.

https://github.com/victorola-coder/git

git and github basics
https://github.com/victorola-coder/git

Last synced: 6 months ago
JSON representation

git and github basics

Awesome Lists containing this project

README

          

# Git && Github

## This repository contains some important basic things to know git and github

### How to Clone this Repository

1. Open your terminal.
2. Navigate to the directory where you want to clone the repository.
3. Run the following command:

```
git clone https://github.com/victorola-coder/git.git
```

### How to Contribute

1. Fork the repository.
2. Clone your fork:

```
git clone https://github.com/victorola-coder/git.git
```

3. Create a new branch:

```
git checkout -b your-new-branch-name
```

4. Make changes and commit them:

```
git commit -am "Add some changes"
```

5. Push to the branch:

```
git push origin your-new-branch-name
```

6. Create a new Pull Request.

tbc