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
- Host: GitHub
- URL: https://github.com/victorola-coder/git
- Owner: Victorola-coder
- Created: 2024-10-12T20:54:04.000Z (almost 2 years ago)
- Default Branch: git
- Last Pushed: 2024-11-16T18:59:33.000Z (over 1 year ago)
- Last Synced: 2025-04-02T21:30:51.399Z (over 1 year ago)
- Language: HTML
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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