Skip to content

shweta-technologies/training-new

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Git Training Task

Welcome to this Git training task! This exercise will help you understand how to clone a repository, create a new branch, make changes, and push your work.

Task Overview

Your task is to:

  1. Clone this repository.
  2. Create a new branch.
  3. Make some changes.
  4. Commit the changes.
  5. Push the branch to the remote repository.

Steps to Complete the Task

1. Clone the Repository

 git clone <repository_url>
 cd <repository_name>

2. Create a New Branch

 git checkout -b <your_branch_name>

3. Make Changes

  • Open any file and make a small change, or create a new file.
  • Save the changes.

4. Add and Commit Changes

 git add .
 git commit -m "Added changes for training task"

5. Push the Branch

 git push origin <your_branch_name>

Completion

Once you have pushed your branch, submit the branch name or create a pull request.

Happy Coding! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors