Trekworld

A static website built using js, html and css for a treking community. Deployment The application is deployed and accessible at below URL Trekworld Requirements Browser Project setup Clone the repository from github via git on your laptop git clone https://github.com/9ovindyadav/trekworld.git Open the index.html file in browser Contribuiting Contributions are welcome! If you’d like to contribute to the project. Github Repo Support If you encounter any issue or have questions , please open and issue in the issue section. ...

October 30, 2023 · 1 min · 79 words · Govind yadav

Git and GitHub- Basic commands for beginners

Git and GitHub have become indispensable tools for developers and teams working on software projects. Git is a distributed version control system, and GitHub is a web-based platform that enhances collaboration and code sharing. In this blog, we’ll focus on four fundamental Git commands that every developer should know and expand on other essential topics related to Git and GitHub. 1. Git Initialization ( git init ) To start version controlling your project with Git, you first need to initialize a repository. The git init command creates a new Git repository in your project directory. It establishes a .git directory that tracks changes and manages your project’s history. ...

October 27, 2023 · 3 min · 440 words · Govind yadav